diff options
author | mathieui <mathieui@mathieui.net> | 2012-05-04 19:41:59 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-05-04 19:41:59 +0200 |
commit | 91ab569e52af2566dc1b1af0bd87444a4a1246d1 (patch) | |
tree | 72b17e86d67612a372957e7b73300a4245799331 /src/tabs.py | |
parent | 7778ad921620e7143fc59be4bd9d2ecb9ad08704 (diff) | |
download | poezio-91ab569e52af2566dc1b1af0bd87444a4a1246d1.tar.gz poezio-91ab569e52af2566dc1b1af0bd87444a4a1246d1.tar.bz2 poezio-91ab569e52af2566dc1b1af0bd87444a4a1246d1.tar.xz poezio-91ab569e52af2566dc1b1af0bd87444a4a1246d1.zip |
Do not quote the JID for /remove completion
Diffstat (limited to 'src/tabs.py')
-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 df5a9b90..40786577 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -2013,7 +2013,7 @@ class RosterInfoTab(Tab): From with any JID presence in the roster """ jids = [jid for jid in roster.jids()] - return the_input.auto_completion(jids, '') + return the_input.auto_completion(jids, '', quotify=False) def completion_name(self, the_input): text = the_input.get_text() |