mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-30 06:49:24 +01:00
Fixed funkyArgument to allow bolding.
This commit is contained in:
parent
bc93b2953a
commit
15e26578fb
@ -156,9 +156,10 @@ def bold(s):
|
|||||||
def validArgument(s):
|
def validArgument(s):
|
||||||
return '\r' not in s and '\n' not in s and '\x00' not in s
|
return '\r' not in s and '\n' not in s and '\x00' not in s
|
||||||
|
|
||||||
|
nonFunkyArguments = string.printable+'\x02'
|
||||||
def funkyArgument(s):
|
def funkyArgument(s):
|
||||||
if validArgument(s):
|
if validArgument(s):
|
||||||
if s.translate(string.ascii, string.printable) == '':
|
if s.translate(string.ascii, nonFunkyArguments) == '':
|
||||||
# All characters must be printable.
|
# All characters must be printable.
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user