summaryrefslogtreecommitdiff
path: root/alot/account.py
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-06-01 09:39:00 +0200
committerAnton Khirnov <anton@khirnov.net>2020-07-01 16:38:01 +0200
commitc12540d435aca5ba3139a9aeb02207699b85eb53 (patch)
tree3183932d088307b9efdb2e388511e53e9499f15a /alot/account.py
parent1bceeca953cda102923bb67dfbc8488bae5d35cc (diff)
More missed list->set conversions for tags
Diffstat (limited to 'alot/account.py')
-rw-r--r--alot/account.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/account.py b/alot/account.py
index a7e82690..4112ce53 100644
--- a/alot/account.py
+++ b/alot/account.py
@@ -217,7 +217,7 @@ class Account:
self.signature_as_attachment = signature_as_attachment
self.sign_by_default = sign_by_default
self.sent_box = sent_box
- self.sent_tags = sent_tags
+ self.sent_tags = frozenset(sent_tags)
self.draft_box = draft_box
self.draft_tags = draft_tags
self.replied_tags = replied_tags