Skip to content

Commit

Permalink
Fix BuildSlave._mail_missing_message for b4fb9fb.
Browse files Browse the repository at this point in the history
Fixes #2284.
  • Loading branch information
tomprince committed May 18, 2012
1 parent e4d2828 commit 0aa6b8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/buildslave.py
Expand Up @@ -611,7 +611,7 @@ def _mail_missing_message(self, subject, text):
# first, see if we have a MailNotifier we can use. This gives us a
# fromaddr and a relayhost.
buildmaster = self.botmaster.master
for st in buildmaster.statusTargets:
for st in buildmaster.status:
if isinstance(st, MailNotifier):
break
else:
Expand Down

0 comments on commit 0aa6b8d

Please sign in to comment.