Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Apr 29, 2014
1 parent def2e0e commit 986e47c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions master/buildbot/steps/shell.py
Expand Up @@ -581,8 +581,8 @@ def createSummary(self, log):
if (directoryLeaveRe and
self.directoryStack and
directoryLeaveRe.search(line)):
self.directoryStack.pop()
continue
self.directoryStack.pop()
continue

match = wre.match(line)
if match:
Expand All @@ -602,7 +602,7 @@ def createSummary(self, log):

def evaluateCommand(self, cmd):
if (cmd.didFail() or
(self.maxWarnCount is not None and self.warnCount > self.maxWarnCount)):
(self.maxWarnCount is not None and self.warnCount > self.maxWarnCount)):
return FAILURE
if self.warnCount:
return WARNINGS
Expand Down

0 comments on commit 986e47c

Please sign in to comment.