From 67419b4a7f4d908009ad40127525dbc995fb832c Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Fri, 25 Nov 2011 21:54:40 +0100 Subject: Fix split of args for /groupadd --- src/tabs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tabs.py b/src/tabs.py index 7398aacd..f9940d82 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -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 -- cgit v1.2.3