From 91ab569e52af2566dc1b1af0bd87444a4a1246d1 Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 4 May 2012 19:41:59 +0200 Subject: Do not quote the JID for /remove completion --- src/tabs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.3