diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-03-27 14:40:29 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-03-27 14:40:29 +0200 |
commit | a2abc116e52016ecf8d4268245dcdcd8dbb079a0 (patch) | |
tree | 767932567ea5dbd3e5c76e8202bc587fed9bd6ad /src/core.py | |
parent | e4f282834766abfc1776568da8f9fbbafe408332 (diff) | |
download | poezio-a2abc116e52016ecf8d4268245dcdcd8dbb079a0.tar.gz poezio-a2abc116e52016ecf8d4268245dcdcd8dbb079a0.tar.bz2 poezio-a2abc116e52016ecf8d4268245dcdcd8dbb079a0.tar.xz poezio-a2abc116e52016ecf8d4268245dcdcd8dbb079a0.zip |
Jump the space on /message JID blabla command
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index e08243bc..e2b2fb1e 100644 --- a/src/core.py +++ b/src/core.py @@ -961,7 +961,7 @@ class Core(object): jid = args[0] tab = self.open_conversation_window(jid, focus=True) if len(args) > 1: - tab.command_say(arg.strip()[len(jid):]) + tab.command_say(arg.strip()[len(jid)+1:]) def command_version(self, arg): """ |