Updated forgotten % in Misc.tell.

This commit is contained in:
Jeremy Fincher 2004-07-29 07:39:59 +00:00
parent 5f1a08f6e0
commit b26ef394ab

View File

@ -521,7 +521,8 @@ class Misc(callbacks.Privmsg):
irc.error('You just told me, why should I tell myself?') irc.error('You just told me, why should I tell myself?')
return return
elif target not in irc.state.nicksToHostmasks: elif target not in irc.state.nicksToHostmasks:
irc.error('I haven\'t seen %s, I\'ll let you do the telling.') s = 'I haven\'t seen %s, I\'ll let you do the telling.' % target
irc.error(s)
return return
if irc.action: if irc.action:
irc.action = False irc.action = False