diff options
author | mathieui <mathieui@mathieui.net> | 2012-03-17 13:33:00 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-03-17 13:33:00 +0100 |
commit | 3734304091cc492b2fe7bfc04525339d89ec41c0 (patch) | |
tree | b5a5bb7f4fa9862e122c2eeb109c77d14a92128e /src/core.py | |
parent | c6e435870606629b97521c838c676708af328841 (diff) | |
download | poezio-3734304091cc492b2fe7bfc04525339d89ec41c0.tar.gz poezio-3734304091cc492b2fe7bfc04525339d89ec41c0.tar.bz2 poezio-3734304091cc492b2fe7bfc04525339d89ec41c0.tar.xz poezio-3734304091cc492b2fe7bfc04525339d89ec41c0.zip |
Fixes #2343
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 ccf8262c..2e920508 100644 --- a/src/core.py +++ b/src/core.py @@ -2085,7 +2085,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('%s/%s' %(tab.get_name(), tab.own_nick)) + self.command_join('"%s/%s"' %(tab.get_name(), tab.own_nick)) def command_bind(self, arg): """ |