diff options
author | mathieui <mathieui@mathieui.net> | 2013-02-11 22:23:44 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-02-11 22:23:44 +0100 |
commit | 14183c49c57334b26b52fcf8b6604e70a230535b (patch) | |
tree | c0909c937262d0904e05bef974e1b01bc326604a | |
parent | 27d85a0961f7aad312538213f68862e2db09726b (diff) | |
download | poezio-14183c49c57334b26b52fcf8b6604e70a230535b.tar.gz poezio-14183c49c57334b26b52fcf8b6604e70a230535b.tar.bz2 poezio-14183c49c57334b26b52fcf8b6604e70a230535b.tar.xz poezio-14183c49c57334b26b52fcf8b6604e70a230535b.zip |
Do not add a space after /unignore completion
-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 a74dcd69..bab3f989 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -1247,7 +1247,7 @@ class MucTab(ChatTab): self.core.information(_('%s is now unignored') % nick) def completion_unignore(self, the_input): - return the_input.auto_completion([user.nick for user in self.ignores], ' ', quotify=False) + return the_input.auto_completion([user.nick for user in self.ignores], '', quotify=False) def resize(self): """ |