[svn r44655] be consistent in super usage
--HG-- branch : trunk
This commit is contained in:
parent
6ec2be9985
commit
856c7e5695
|
@ -350,7 +350,7 @@ class Module(FSCollector, PyCollectorMixin):
|
||||||
def run(self):
|
def run(self):
|
||||||
if getattr(self.obj, 'disabled', 0):
|
if getattr(self.obj, 'disabled', 0):
|
||||||
return []
|
return []
|
||||||
return PyCollectorMixin.run(self)
|
return super(Module, self).run()
|
||||||
|
|
||||||
def join(self, name):
|
def join(self, name):
|
||||||
res = super(Module, self).join(name)
|
res = super(Module, self).join(name)
|
||||||
|
|
Loading…
Reference in New Issue