[rhmessaging-commits] rhmessaging commits: r3822 - mgmt/trunk/parsley/python/parsley.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Wed Jan 27 10:13:07 EST 2010


Author: justi9
Date: 2010-01-27 10:13:06 -0500 (Wed, 27 Jan 2010)
New Revision: 3822

Modified:
   mgmt/trunk/parsley/python/parsley/collectionsex.py
Log:
Use the right kind of super call

Modified: mgmt/trunk/parsley/python/parsley/collectionsex.py
===================================================================
--- mgmt/trunk/parsley/python/parsley/collectionsex.py	2010-01-26 21:40:21 UTC (rev 3821)
+++ mgmt/trunk/parsley/python/parsley/collectionsex.py	2010-01-27 15:13:06 UTC (rev 3822)
@@ -9,7 +9,7 @@
 
         def __getitem__(self, key):
             try:
-                super(dict, self).__getitem__(key)
+                dict.__getitem__(self, key)
             except KeyError:
                 if self.default_factory is None:
                     raise



More information about the rhmessaging-commits mailing list