From 8b787ec521849cb854154857196734b7a298611e Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 6 Feb 2020 14:17:54 +0100 Subject: db/message: drop a useless getter --- alot/widgets/thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alot/widgets') diff --git a/alot/widgets/thread.py b/alot/widgets/thread.py index 61799aa3..d87a881a 100644 --- a/alot/widgets/thread.py +++ b/alot/widgets/thread.py @@ -42,7 +42,7 @@ class MessageSummaryWidget(urwid.WidgetWrap): cols.append(txt) if settings.get('msg_summary_hides_threadwide_tags'): - thread_tags = message.get_thread().get_tags(intersection=True) + thread_tags = message.thread.get_tags(intersection=True) outstanding_tags = set(message.get_tags()).difference(thread_tags) tag_widgets = sorted(TagWidget(t, attr, focus_att) for t in outstanding_tags) -- cgit v1.2.3