Skip to content

Commit

Permalink
fix typo: _waiters vs waiters
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Jul 1, 2011
1 parent 3bb19ec commit 2310000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/schedulers/triggerable.py
Expand Up @@ -62,7 +62,7 @@ def stopService(self):
# and errback any outstanding deferreds
if self._waiters:
msg = 'Triggerable scheduler stopped before build was complete'
for d in self.waiters:
for d in self._waiters:
d.errback(failure.Failure(RuntimeError(msg)))
self._waiters = {}

Expand Down

0 comments on commit 2310000

Please sign in to comment.