diff -r 5bbbb5fd2a8a -r 660607a4d589 sbsv2/raptor/python/plugins/filter_what.py --- a/sbsv2/raptor/python/plugins/filter_what.py Mon Mar 01 17:45:23 2010 +0000 +++ b/sbsv2/raptor/python/plugins/filter_what.py Tue Mar 02 09:03:33 2010 +0000 @@ -1,5 +1,5 @@ # -# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +# Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies). # All rights reserved. # This component and the accompanying materials are made available # under the terms of the License "Eclipse Public License v1.0" @@ -162,17 +162,16 @@ self.print_file(line, start, end) - else: - "work out what the 'current' bldinf file is" - m = self.whatlog_regex.match(line) - if m: - bi = m.groupdict()['bldinf'] - if self.current_bldinf != bi: - if self.current_bldinf != '': - self.end_bldinf() - self.current_bldinf = bi - if bi != '': - self.start_bldinf(bi) + "work out what the 'current' bldinf file is" + m = self.whatlog_regex.match(line) + if m: + bi = m.groupdict()['bldinf'] + if self.current_bldinf != bi: + if self.current_bldinf != '': + self.end_bldinf() + self.current_bldinf = bi + if bi != '': + self.start_bldinf(bi)