mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-11 20:52:42 +01:00
commands.py: Fix error message of getSomethingWithoutSpaces.
This commit is contained in:
parent
910244ef68
commit
29dc1438a0
@ -578,7 +578,8 @@ def getSomething(irc, msg, args, state, errorMsg=None, p=None):
|
|||||||
def getSomethingNoSpaces(irc, msg, args, state, *L):
|
def getSomethingNoSpaces(irc, msg, args, state, *L):
|
||||||
def p(s):
|
def p(s):
|
||||||
return len(s.split(None, 1)) == 1
|
return len(s.split(None, 1)) == 1
|
||||||
getSomething(irc, msg, args, state, p=p, *L)
|
getSomething(irc, msg, args, state, p=p, errorMsg=_('You must not give a '
|
||||||
|
'string containing spaces as an argument.'), *L)
|
||||||
|
|
||||||
def private(irc, msg, args, state):
|
def private(irc, msg, args, state):
|
||||||
if irc.isChannel(msg.args[0]):
|
if irc.isChannel(msg.args[0]):
|
||||||
|
Loading…
Reference in New Issue
Block a user