Fix split of args for /groupadd

This commit is contained in:
Florent Le Coz 2011-11-25 21:54:40 +01:00
parent bbda0b7481
commit 67419b4a7f

View file

@ -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