Skip to content

Commit

Permalink
Merge pull request #1308 from delanne/PylintStep
Browse files Browse the repository at this point in the history
Fix issue raised by benallard
  • Loading branch information
Mikhail Sobolev committed Oct 30, 2014
2 parents 0a76c82 + a2c9c1b commit ed366c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/buildbot/steps/python.py
Expand Up @@ -205,12 +205,12 @@ class PyLint(ShellCommand):

def __init__(self, **kwargs):
ShellCommand.__init__(self, **kwargs)
self.counts = {}
self.summaries = {}
self.addLogObserver(
'stdio', logobserver.LineConsumerLogObserver(self.logConsumer))

def logConsumer(self):
self.counts = {}
self.summaries = {}
for m in self.MESSAGES:
self.counts[m] = 0
self.summaries[m] = []
Expand Down

0 comments on commit ed366c5

Please sign in to comment.