Skip to content

Commit

Permalink
TinderboxMailNotifier should treat RETRY like EXCEPTION.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhearsum committed Aug 24, 2010
1 parent df68fd3 commit 5764bd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/status/tinderbox.py
Expand Up @@ -171,7 +171,7 @@ def buildMessage(self, name, build, results):
elif results == WARNINGS:
res = "testfailed"
text += res
elif results == EXCEPTION:
elif results in (EXCEPTION, RETRY):
res = "exception"
text += res
else:
Expand Down

0 comments on commit 5764bd6

Please sign in to comment.