Fix a bug with a missing argument for string formatting.

This commit is contained in:
James Vega 2005-02-23 16:40:21 +00:00
parent 181c623703
commit 2408457221
1 changed files with 1 additions and 1 deletions

View File

@ -753,7 +753,7 @@ class Irc(IrcCommandDispatcher):
log.debug('Updating nick attribute to %s.', self.nick)
if msg.prefix != self.server:
self.server = msg.prefix
log.debug('Updating server attribute to %s.')
log.debug('Updating server attribute to %s.', self.server)
# Dispatch to specific handlers for commands.
method = self.dispatchCommand(msg.command)