[py-svn] r44655 - py/trunk/py/test

pedronis at codespeak.net pedronis at codespeak.net
Sun Jul 1 15:44:40 CEST 2007


Author: pedronis
Date: Sun Jul  1 15:44:40 2007
New Revision: 44655

Modified:
   py/trunk/py/test/collect.py
Log:
be consistent in super usage



Modified: py/trunk/py/test/collect.py
==============================================================================
--- py/trunk/py/test/collect.py	(original)
+++ py/trunk/py/test/collect.py	Sun Jul  1 15:44:40 2007
@@ -350,7 +350,7 @@
     def run(self):
         if getattr(self.obj, 'disabled', 0):
             return []
-        return PyCollectorMixin.run(self) 
+        return super(Module, self).run()
 
     def join(self, name):
         res = super(Module, self).join(name)


More information about the py-svn mailing list