Skip to content

Commit

Permalink
fix logging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Jan 9, 2013
1 parent 4300800 commit 3231275
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions master/buildbot/schedulers/timed.py
Expand Up @@ -393,8 +393,9 @@ def setLast(lastTrigger):
pass
# If the lastTrigger isn't of the right format, ignore it
if not self._lastTrigger:
log.msg("NightlyTriggerable Scheduler <%s>: could not "
"load previous state; starting fresh")
log.msg("NightlyTriggerable Scheduler <%(scheduler)s>: "
"could not load previous state; starting fresh",
scheduler=self.name)
d.addCallback(setLast)
d.addErrback(log.err, 'while getting NightlyTriggerable state')

Expand Down

0 comments on commit 3231275

Please sign in to comment.