From 95abf207f62bbc661591451dccaa35fdc1464aba Mon Sep 17 00:00:00 2001 From: Sfan5 Date: Sat, 19 Jan 2013 18:39:26 +0100 Subject: [PATCH] [RUtils] Fix uudecode --- rutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rutils.py b/rutils.py index a710c86..5f79978 100755 --- a/rutils.py +++ b/rutils.py @@ -153,7 +153,7 @@ def uudecode(phenny, input): return phenny.reply("Nothing to decode.") q = input.group(2).encode('utf-8') try: - return phenny.say(binascii.ua2b_uu(q + '\n')) + return phenny.say(binascii.a2b_uu(q + '\n')) except BaseException as e: return phenny.reply(e.message)