summaryrefslogtreecommitdiff
path: root/alot/db
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-05-04 13:31:41 +0200
committerAnton Khirnov <anton@khirnov.net>2020-05-05 11:24:33 +0200
commit75c7a2f9dcc1fd36f37b93c512725528aafef457 (patch)
tree71f340706bd5a2066395fdfd4f73ffd5d77c77ba /alot/db
parenta6327a79a867c72f4ba764e7e5bf34440e8917a0 (diff)
db/thread: fix documentation
message_list stores Messages themselves, not just their ids.
Diffstat (limited to 'alot/db')
-rw-r--r--alot/db/thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/db/thread.py b/alot/db/thread.py
index 3dc90325..f161cbd8 100644
--- a/alot/db/thread.py
+++ b/alot/db/thread.py
@@ -39,7 +39,7 @@ class Thread:
"""A list of toplevel messages"""
toplevel_messages = None
- """A list of ids of all messages in this thread in depth-first order"""
+ """A list of all messages in this thread in depth-first order"""
message_list = None
"""A dict mapping Message-Id strings to Message instances"""