mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 13:19:24 +01:00
Fix a bug with a missing argument for string formatting.
This commit is contained in:
parent
181c623703
commit
2408457221
@ -753,7 +753,7 @@ class Irc(IrcCommandDispatcher):
|
|||||||
log.debug('Updating nick attribute to %s.', self.nick)
|
log.debug('Updating nick attribute to %s.', self.nick)
|
||||||
if msg.prefix != self.server:
|
if msg.prefix != self.server:
|
||||||
self.server = msg.prefix
|
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.
|
# Dispatch to specific handlers for commands.
|
||||||
method = self.dispatchCommand(msg.command)
|
method = self.dispatchCommand(msg.command)
|
||||||
|
Loading…
Reference in New Issue
Block a user