mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Must've forgotten to commit this earlier.
This commit is contained in:
parent
9253ce5adc
commit
e5c58089ce
@ -50,11 +50,10 @@ def getChannel(msg, args):
|
||||
If the channel was given in args, args is modified (the channel is
|
||||
removed).
|
||||
"""
|
||||
if ircutils.isChannel(msg.args[0]):
|
||||
return msg.args[0]
|
||||
else:
|
||||
if len(args) > 0:
|
||||
if args and ircutils.isChannel(args[0]):
|
||||
return args.pop(0)
|
||||
elif ircutils.isChannel(msg.args[0]):
|
||||
return msg.args[0]
|
||||
else:
|
||||
raise callbacks.Error, 'Command must be sent in a channel or ' \
|
||||
'include a channel in its arguments.'
|
||||
|
Loading…
Reference in New Issue
Block a user