diff options
author | mathieui <mathieui@mathieui.net> | 2014-09-17 18:51:56 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-09-17 18:51:56 +0200 |
commit | bec71fe38d76524cdf04866180f5e3eec4f13701 (patch) | |
tree | cd398a212e41b8183cc67762ac0a672f73a93ebc /plugins | |
parent | d95ec953c3982fe70e6ba7116ae5b9df17f6ea7f (diff) | |
download | poezio-bec71fe38d76524cdf04866180f5e3eec4f13701.tar.gz poezio-bec71fe38d76524cdf04866180f5e3eec4f13701.tar.bz2 poezio-bec71fe38d76524cdf04866180f5e3eec4f13701.tar.xz poezio-bec71fe38d76524cdf04866180f5e3eec4f13701.zip |
Fix #2581 (fix /untell completion)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/tell.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/tell.py b/plugins/tell.py index 6aa8357d..cfa76e9c 100644 --- a/plugins/tell.py +++ b/plugins/tell.py @@ -61,7 +61,7 @@ class Plugin(BasePlugin): if not nick in self.tabs[tab]: self.tabs[tab][nick] = [] self.tabs[tab][nick].append(msg) - self.api.information('Will tell %s' % nick, 'Info') + self.api.information('Message for %s queued' % nick, 'Info') def command_untell(self, args): """/untell <nick>""" @@ -72,10 +72,11 @@ class Plugin(BasePlugin): if not nick in self.tabs[tab]: return del self.tabs[tab][nick] + self.api.information('Messages for %s unqueued' % nick, 'Info') def completion_untell(self, the_input): tab = self.api.current_tab() if not tab in self.tabs: return the_input.auto_completion([], '') - return the_input.auto_completion(list(self.tabs[tab]), '') + return the_input.auto_completion(list(self.tabs[tab]), '', quotify=False) |