From 49f8105263e47774c00c8c40a86f6c48e4ee3c88 Mon Sep 17 00:00:00 2001 From: James Vega Date: Fri, 29 Oct 2004 19:47:46 +0000 Subject: [PATCH] proper string formatting --- plugins/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/__init__.py b/plugins/__init__.py index 01cd2ea2c..db7e61d16 100644 --- a/plugins/__init__.py +++ b/plugins/__init__.py @@ -476,7 +476,7 @@ class ChannelIdDatabasePlugin(callbacks.Privmsg): name = 'a user that is no longer registered' at = time.localtime(record.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) def get(self, irc, msg, args, channel, id):