Skip to content

Commit

Permalink
Merge branch 'master' of github.com:buildbot/buildbot
Browse files Browse the repository at this point in the history
* 'master' of github.com:buildbot/buildbot:
  Two more fixes for log stuff
  • Loading branch information
Dustin J. Mitchell committed Aug 26, 2010
2 parents 9b81701 + ae15bfd commit a456a68
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 a456a68

Please sign in to comment.