Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/nicolas17/buildbot
Browse files Browse the repository at this point in the history
* 'master' of git://github.com/nicolas17/buildbot:
  Web console: show warnings as 'success' instead of 'exception'.
  • Loading branch information
Dustin J. Mitchell committed Jun 15, 2010
2 parents 29c3ba8 + bd13244 commit 74d8970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/status/web/console.py
Expand Up @@ -19,7 +19,7 @@ def getResultsClass(results, prevResults, inProgress):
if results is None:
return "notstarted"

if results == builder.SUCCESS:
if results == builder.SUCCESS or results == builder.WARNINGS:
return "success"

if results == builder.FAILURE:
Expand Down

0 comments on commit 74d8970

Please sign in to comment.