summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-05-19 20:38:12 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-05-19 20:38:12 +0200
commit5aff41b69be43cfec31ea4b6b5c735b500fae9db (patch)
tree313edc803260377bf006c23e2f5dd0d6362ecfe5 /src/core.py
parent09d4c16dc1c7af58248800c8a0cab9c3df180197 (diff)
downloadpoezio-5aff41b69be43cfec31ea4b6b5c735b500fae9db.tar.gz
poezio-5aff41b69be43cfec31ea4b6b5c735b500fae9db.tar.bz2
poezio-5aff41b69be43cfec31ea4b6b5c735b500fae9db.tar.xz
poezio-5aff41b69be43cfec31ea4b6b5c735b500fae9db.zip
Fix the argument split issues
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core.py b/src/core.py
index 8e0d56ce..a639cbfa 100644
--- a/src/core.py
+++ b/src/core.py
@@ -1006,15 +1006,15 @@ class Core(object):
"""
/status <status> [msg]
"""
- args = arg.split()
- if len(args) < 1:
+ args = common.shell_split(arg)
+ if len(args) != 2 and len(args) != 1:
return
if not args[0] in possible_show.keys():
self.command_help('status')
return
show = possible_show[args[0]]
- if len(args) > 1:
- msg = ' '.join(args[1:])
+ if len(args) == 2:
+ msg = args[1]
else:
msg = None
pres = self.xmpp.make_presence()