summaryrefslogtreecommitdiff
path: root/alot/widgets.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-03-11 16:06:20 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2012-03-11 16:08:08 +0000
commit657b7525f297c885877281861dba90da5301db25 (patch)
treea0e1f70ab1ad2361adb287d299a238114dacb1a3 /alot/widgets.py
parent07e9fec4272f2bffabee541f161f88e7fcd082cc (diff)
refactor db: move into submodule
this moves messages into the new submodule alot.db which from now on also contains Threads in a separate file
Diffstat (limited to 'alot/widgets.py')
-rw-r--r--alot/widgets.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/alot/widgets.py b/alot/widgets.py
index 817a89cd..eaf4c8e1 100644
--- a/alot/widgets.py
+++ b/alot/widgets.py
@@ -2,11 +2,11 @@ import urwid
import logging
from settings import settings
-from helper import shorten_author_string
-from helper import pretty_datetime
-from helper import tag_cmp
-from helper import string_decode
-import message
+from alot.helper import shorten_author_string
+from alot.helper import pretty_datetime
+from alot.helper import tag_cmp
+from alot.helper import string_decode
+import alot.db.message as message
import time