# HG changeset patch # User timothy.murphy@nokia.com # Date 1266235090 0 # Node ID 432f3175b677ec487f654aaeaa8792600bbd47fd # Parent f7f333fcfeeb10b4b57da6307e4e13b9e8bc313b fix: use super() properly to ensure that these classes are initialised as expected. diff -r f7f333fcfeeb -r 432f3175b677 sbsv2/raptor/python/plugins/filter_checkcomp.py --- a/sbsv2/raptor/python/plugins/filter_checkcomp.py Sun Feb 14 21:04:58 2010 +0200 +++ b/sbsv2/raptor/python/plugins/filter_checkcomp.py Mon Feb 15 11:58:10 2010 +0000 @@ -24,7 +24,7 @@ class FilterCheckComp(filter_what.FilterWhat): def __init__(self): - super(filter_what.FilterWhat, self).__init__() + super(FilterCheckComp, self).__init__() self.check = True def write(self, text): diff -r f7f333fcfeeb -r 432f3175b677 sbsv2/raptor/python/plugins/filter_whatcomp.py --- a/sbsv2/raptor/python/plugins/filter_whatcomp.py Sun Feb 14 21:04:58 2010 +0200 +++ b/sbsv2/raptor/python/plugins/filter_whatcomp.py Mon Feb 15 11:58:10 2010 +0000 @@ -24,7 +24,7 @@ class FilterWhatComp(filter_what.FilterWhat): def __init__(self): - super(filter_what.FilterWhat, self).__init__() + super(FilterWhatComp, self).__init__() def write(self, text): "process some log text"