diff options
author | mathieui <mathieui@mathieui.net> | 2012-03-07 17:36:40 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-03-07 17:36:40 +0100 |
commit | 232bc999d80b5debe6af0b7fd411d16a3cc1e408 (patch) | |
tree | 2a034b4789c83cc785bb0b6fcd22c3a7950d1413 /src/core.py | |
parent | 513ff094e3388b363e666e438be2d6db76b4542b (diff) | |
download | poezio-232bc999d80b5debe6af0b7fd411d16a3cc1e408.tar.gz poezio-232bc999d80b5debe6af0b7fd411d16a3cc1e408.tar.bz2 poezio-232bc999d80b5debe6af0b7fd411d16a3cc1e408.tar.xz poezio-232bc999d80b5debe6af0b7fd411d16a3cc1e408.zip |
Fixes #2341 (also for /server_cycle)
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 96cc1454..1ef6a556 100644 --- a/src/core.py +++ b/src/core.py @@ -1989,7 +1989,7 @@ class Core(object): if tab.joined: muc.leave_groupchat(tab.core.xmpp, tab.get_name(), tab.own_nick, message) tab.joined = False - self.command_join(tab.get_name()) + self.command_join('%s/%s' %(tab.get_name(), tab.own_nick)) def command_bind(self, arg): """ |