From 5764bd6edf7b639fb91bfe0e5732aefbf0bb6c5e Mon Sep 17 00:00:00 2001 From: Ben Hearsum Date: Tue, 24 Aug 2010 11:27:43 -0400 Subject: [PATCH] TinderboxMailNotifier should treat RETRY like EXCEPTION. --- master/buildbot/status/tinderbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/buildbot/status/tinderbox.py b/master/buildbot/status/tinderbox.py index 9ce3480ac25..e35a786729f 100644 --- a/master/buildbot/status/tinderbox.py +++ b/master/buildbot/status/tinderbox.py @@ -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: