mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
proper string formatting
This commit is contained in:
parent
744944d8b2
commit
49f8105263
@ -476,7 +476,7 @@ class ChannelIdDatabasePlugin(callbacks.Privmsg):
|
|||||||
name = 'a user that is no longer registered'
|
name = 'a user that is no longer registered'
|
||||||
at = time.localtime(record.at)
|
at = time.localtime(record.at)
|
||||||
timeS = time.strftime(conf.supybot.humanTimestampFormat(), at)
|
timeS = time.strftime(conf.supybot.humanTimestampFormat(), at)
|
||||||
return '%s #%S: %s (added by %s at %s)' % \
|
return '%s #%s: %s (added by %s at %s)' % \
|
||||||
(self.name(), record.id, utils.quoted(record.text), name, timeS)
|
(self.name(), record.id, utils.quoted(record.text), name, timeS)
|
||||||
|
|
||||||
def get(self, irc, msg, args, channel, id):
|
def get(self, irc, msg, args, channel, id):
|
||||||
|
Loading…
Reference in New Issue
Block a user