diff options
author | mathieui <mathieui@mathieui.net> | 2012-01-21 00:06:18 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-01-21 00:06:18 +0100 |
commit | d4ec0ba442a0676a1b2e3f781d8d27853751ca29 (patch) | |
tree | a8f7de9f38e1c926fb7c61bd2e7574317dfebdc1 /src | |
parent | 1f9a6f588347b5692c60d47966913bb101e479a2 (diff) | |
download | poezio-d4ec0ba442a0676a1b2e3f781d8d27853751ca29.tar.gz poezio-d4ec0ba442a0676a1b2e3f781d8d27853751ca29.tar.bz2 poezio-d4ec0ba442a0676a1b2e3f781d8d27853751ca29.tar.xz poezio-d4ec0ba442a0676a1b2e3f781d8d27853751ca29.zip |
Do not quotify topic completion
Diffstat (limited to 'src')
-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): """ |