Fix split of args for /groupadd
This commit is contained in:
parent
bbda0b7481
commit
67419b4a7f
1 changed files with 1 additions and 1 deletions
|
@ -1684,7 +1684,7 @@ class RosterInfoTab(Tab):
|
|||
"""
|
||||
Add the specified JID to the specified group
|
||||
"""
|
||||
args = args.split(None, 1)
|
||||
args = common.shell_split(args)
|
||||
if len(args) != 2:
|
||||
return
|
||||
jid = JID(args[0]).bare
|
||||
|
|
Loading…
Reference in a new issue