[svn r44655] be consistent in super usage

--HG--
branch : trunk
This commit is contained in:
pedronis 2007-07-01 15:44:40 +02:00
parent 6ec2be9985
commit 856c7e5695
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ class Module(FSCollector, PyCollectorMixin):
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)