mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
commands.py: Fix crash if a custom error message is provided to somethingWithoutSpaces (bug introduced in 29dc1438a0
).
This commit is contained in:
parent
a2f115e09f
commit
b375e7dfb2
@ -600,8 +600,8 @@ def getSomething(irc, msg, args, state, errorMsg=None, p=None):
|
||||
def getSomethingNoSpaces(irc, msg, args, state, *L):
|
||||
def p(s):
|
||||
return len(s.split(None, 1)) == 1
|
||||
getSomething(irc, msg, args, state, p=p, errorMsg=_('You must not give a '
|
||||
'string containing spaces as an argument.'), *L)
|
||||
L = L or [_('You must not give a string containing spaces as an argument.')]
|
||||
getSomething(irc, msg, args, state, p=p, *L)
|
||||
|
||||
def private(irc, msg, args, state):
|
||||
if irc.isChannel(msg.args[0]):
|
||||
|
Loading…
Reference in New Issue
Block a user