Fixed variable-name typo in funkyArgument

This commit is contained in:
Jeremy Fincher 2003-03-31 06:57:28 +00:00
parent fb756c807d
commit 8e32a7cef9
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ def validArgument(s):
notFunky = string.printable+'\x02'
def funkyArgument(s):
return validArgument(s) and s.translate(string.ascii, nonFunky) != ''
return validArgument(s) and s.translate(string.ascii, notFunky) != ''
def reply(msg):
if isChannel(msg.args[0]):