From 4c67a96b49e73833690827d9a36d293a3b562041 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 11 Apr 2003 21:49:47 +0000 Subject: [PATCH] Fixed bug in xor. --- plugins/FunCommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/FunCommands.py b/plugins/FunCommands.py index e8b060f5a..e6e44adc8 100644 --- a/plugins/FunCommands.py +++ b/plugins/FunCommands.py @@ -197,7 +197,7 @@ class FunCommands(callbacks.Privmsg): for c in text: ret.append(chr(ord(c) ^ ord(password[i]))) i = (i + 1) % passwordlen - irc.reply(msg, repr(''.join(ret))) + irc.reply(msg, ''.join(ret)) def mimetype(self, irc, msg, args): ""