From b26ef394ab2fe983f45e438d12b1822d8c35c528 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 29 Jul 2004 07:39:59 +0000 Subject: [PATCH] Updated forgotten % in Misc.tell. --- src/Misc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Misc.py b/src/Misc.py index 7048febd1..81bbfeef9 100755 --- a/src/Misc.py +++ b/src/Misc.py @@ -521,7 +521,8 @@ class Misc(callbacks.Privmsg): irc.error('You just told me, why should I tell myself?') return 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 if irc.action: irc.action = False