summaryrefslogtreecommitdiff
path: root/poezio/core/core.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2018-07-22 00:06:30 +0200
committermathieui <mathieui@mathieui.net>2018-07-22 00:06:30 +0200
commit3cb8e33f938db6bb6e86dd349f8b56676b83556f (patch)
tree0863abcd1f8d446a6c5797f0e1795a9620605a73 /poezio/core/core.py
parent7fd672caca8843a865f67d9befd814603447a1d7 (diff)
downloadpoezio-3cb8e33f938db6bb6e86dd349f8b56676b83556f.tar.gz
poezio-3cb8e33f938db6bb6e86dd349f8b56676b83556f.tar.bz2
poezio-3cb8e33f938db6bb6e86dd349f8b56676b83556f.tar.xz
poezio-3cb8e33f938db6bb6e86dd349f8b56676b83556f.zip
Do not complete fulljids in /message (Fix #3405)
Diffstat (limited to 'poezio/core/core.py')
-rw-r--r--poezio/core/core.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py
index d9ac45a0..480bf814 100644
--- a/poezio/core/core.py
+++ b/poezio/core/core.py
@@ -1099,8 +1099,8 @@ class Core:
for state in states:
for tab in tab_refs[state]:
- if (tab.nb < self.tabs.current_index and
- tab_refs[state][-1].nb > self.tabs.current_index):
+ if (tab.nb < self.tabs.current_index
+ and tab_refs[state][-1].nb > self.tabs.current_index):
continue
self.command.win(str(tab.nb))
return