summaryrefslogtreecommitdiff
path: root/alot/widgets
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-03-05 08:05:29 +0100
committerAnton Khirnov <anton@khirnov.net>2020-03-05 08:05:29 +0100
commit618a235fa30a6a83aebd1f4bda526deb9e9b630a (patch)
tree90c353429daa995ec8f7cc88eba31457c1690d06 /alot/widgets
parentd98af2606e888f4c09c1deb13c6276556d896af5 (diff)
db/utils: move message decryption code into db/message
It is only called from there, so there is no reason to keep it elsewhere.
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 db0af0e0..f6a0a9ea 100644
--- a/alot/widgets/thread.py
+++ b/alot/widgets/thread.py
@@ -11,7 +11,7 @@ import urwid
from .globals import TagWidget
from .globals import AttachmentWidget
from ..settings.const import settings
-from ..db.utils import X_SIGNATURE_MESSAGE_HEADER
+from ..db.message import X_SIGNATURE_MESSAGE_HEADER
from ..helper import string_sanitize
class MessageSummaryWidget(urwid.WidgetWrap):