diff options
author | mathieui <mathieui@mathieui.net> | 2012-01-21 00:06:18 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-01-26 10:05:36 +0100 |
commit | 3d7d7425ee26d73aedb9dc1a51d87d25e37180d4 (patch) | |
tree | a8f7de9f38e1c926fb7c61bd2e7574317dfebdc1 | |
parent | 2240916efecb86f35301dfc83b96444f8a638476 (diff) | |
download | poezio-3d7d7425ee26d73aedb9dc1a51d87d25e37180d4.tar.gz poezio-3d7d7425ee26d73aedb9dc1a51d87d25e37180d4.tar.bz2 poezio-3d7d7425ee26d73aedb9dc1a51d87d25e37180d4.tar.xz poezio-3d7d7425ee26d73aedb9dc1a51d87d25e37180d4.zip |
Do not quotify topic completion
-rw-r--r-- | src/tabs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index e8a773fe..188b6389 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -814,7 +814,7 @@ class MucTab(ChatTab): def completion_topic(self, the_input): current_topic = self.topic - return the_input.auto_completion([current_topic], '') + return the_input.auto_completion([current_topic], '', quotify=False) def command_kick(self, arg): """ |