From 3cb8e33f938db6bb6e86dd349f8b56676b83556f Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 22 Jul 2018 00:06:30 +0200 Subject: Do not complete fulljids in /message (Fix #3405) --- poezio/core/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/core/core.py') 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 -- cgit v1.2.3