summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-05-10 00:47:41 +0200
committermathieui <mathieui@mathieui.net>2011-05-10 00:47:41 +0200
commit6e58f88d051067c2a833d53343fa6d27d58213f7 (patch)
tree182961a49c7dfc2c7bd9da82e67952f4f13ae243 /src/core.py
parentbc67a7d6548443aec9568fda56187978c64736a8 (diff)
downloadpoezio-6e58f88d051067c2a833d53343fa6d27d58213f7.tar.gz
poezio-6e58f88d051067c2a833d53343fa6d27d58213f7.tar.bz2
poezio-6e58f88d051067c2a833d53343fa6d27d58213f7.tar.xz
poezio-6e58f88d051067c2a833d53343fa6d27d58213f7.zip
Fix the /version command in mucs (and globaaly) & improve shlex parsing
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index c000fd55..6cb6efa5 100644
--- a/src/core.py
+++ b/src/core.py
@@ -1044,7 +1044,7 @@ class Core(object):
"""
/version <jid>
"""
- args = arg.split()
+ args = common.shell_split(arg)
if len(args) < 1:
return self.command_help('version')
jid = args[0]