summaryrefslogtreecommitdiff
path: root/alot/widgets
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-02-06 14:17:54 +0100
committerAnton Khirnov <anton@khirnov.net>2020-02-06 17:11:05 +0100
commit8b787ec521849cb854154857196734b7a298611e (patch)
treee06edfd31da7636ba7689531266984d8b85e4118 /alot/widgets
parentfbdde65a7f5eab74d2334481cee52ba429910c22 (diff)
db/message: drop a useless getter
Diffstat (limited to 'alot/widgets')
-rw-r--r--alot/widgets/thread.py2
1 files changed, 1 insertions, 1 deletions
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)