summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-04-18 00:18:18 +0200
committermathieui <mathieui@mathieui.net>2012-04-18 00:18:18 +0200
commit1fdb91a98393aa0ad2f9b844cec7d714b4a3f2f7 (patch)
treee9181dd1aed3227ee51306f8dfa7558b53213245 /src
parentabd8d30990b64b35b86d56326a489ac9f1ad1b85 (diff)
downloadpoezio-1fdb91a98393aa0ad2f9b844cec7d714b4a3f2f7.tar.gz
poezio-1fdb91a98393aa0ad2f9b844cec7d714b4a3f2f7.tar.bz2
poezio-1fdb91a98393aa0ad2f9b844cec7d714b4a3f2f7.tar.xz
poezio-1fdb91a98393aa0ad2f9b844cec7d714b4a3f2f7.zip
Split correctly on command_groupremove
Diffstat (limited to 'src')
-rw-r--r--src/tabs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 5e1f3038..0814d2fc 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -1855,7 +1855,7 @@ class RosterInfoTab(Tab):
"""
Remove 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