summaryrefslogtreecommitdiff
path: root/alot/db/__init__.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-08-05 14:39:50 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-08-10 13:03:40 +0100
commit7dc706404c51d828085b9d975a44c993a9f80129 (patch)
treed366f0cfdfe20c04afc8b46eff4f802d47806b5f /alot/db/__init__.py
parent50293143ea58eca364d32bae14c422d4ba782d9f (diff)
cleanup: make Thread and Message available in alot.db
Diffstat (limited to 'alot/db/__init__.py')
-rw-r--r--alot/db/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/alot/db/__init__.py b/alot/db/__init__.py
index ae067ce3..f61142ea 100644
--- a/alot/db/__init__.py
+++ b/alot/db/__init__.py
@@ -2,4 +2,6 @@
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
+from thread import Thread
+from message import Message
DB_ENC = 'UTF-8'