[RUtils] Fix uudecode

master
Sfan5 2013-01-19 18:39:26 +01:00
parent 8236b28911
commit 95abf207f6
1 changed files with 1 additions and 1 deletions

View File

@ -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)