summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-05-04 19:41:59 +0200
committermathieui <mathieui@mathieui.net>2012-05-04 19:41:59 +0200
commit91ab569e52af2566dc1b1af0bd87444a4a1246d1 (patch)
tree72b17e86d67612a372957e7b73300a4245799331 /src
parent7778ad921620e7143fc59be4bd9d2ecb9ad08704 (diff)
downloadpoezio-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')
-rw-r--r--src/tabs.py2
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()