Fixed bugz0r!

This commit is contained in:
Jeremy Fincher 2003-12-03 02:43:30 +00:00
parent 2046e63898
commit 31de7d0cf8
1 changed files with 1 additions and 1 deletions

View File

@ -595,7 +595,7 @@ class ChannelDB(plugins.ChannelDBHandler,
s = 'You have not said %r' % word
ret = '%s %s. %s' % (ret, utils.commaAndify(L), s)
except KeyError:
ret = '%s %s.' % utils.commaAndify(L)
ret = '%s %s.' % (ret, utils.commaAndify(L))
irc.reply(msg, ret)
Class = ChannelDB