Skip to content

Commit

Permalink
Two more fixes for log stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
bhearsum committed Aug 26, 2010
1 parent 548d1ac commit 9b5af09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion master/buildbot/process/buildstep.py
Expand Up @@ -1209,7 +1209,7 @@ def regex_log_evaluator(cmd, step_status, regexes):
if worst_status(worst, possible_status) == possible_status:
if isinstance(err, (basestring)):
err = re.compile(".*%s.*" % err, re.DOTALL)
for l in cmd.logs:
for l in cmd.logs.values():
if err.search(l.getText()):
worst = possible_status
return worst
Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/status/tinderbox.py
Expand Up @@ -7,7 +7,7 @@

from buildbot import interfaces
from buildbot.status import mail
from buildbot.status.builder import SUCCESS, WARNINGS, EXCEPTION
from buildbot.status.builder import SUCCESS, WARNINGS, EXCEPTION, RETRY
from buildbot.steps.shell import WithProperties

import gzip, bz2, base64, re, cStringIO
Expand Down

0 comments on commit 9b5af09

Please sign in to comment.