summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Spaeth <sebastian@sspaeth.de>2010-03-30 16:10:07 +0200
committerSebastian Spaeth <sebastian@sspaeth.de>2010-03-30 16:10:07 +0200
commit775d3bc31384726e707057d30ba84b0906a286c1 (patch)
tree001ce9e590e86600a64f11c1d7b33b0a2743fa8c
parentf70b84cb39075a8e2404ccfbf7f749b481a30f4b (diff)
database.py: also need to import Message
-rw-r--r--cnotmuch/database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cnotmuch/database.py b/cnotmuch/database.py
index 44fd315..bb8a963 100644
--- a/cnotmuch/database.py
+++ b/cnotmuch/database.py
@@ -2,7 +2,7 @@ import os
from ctypes import c_int, c_char_p, c_void_p, c_uint, c_long, byref
from cnotmuch.globals import nmlib, STATUS, NotmuchError, Enum
from cnotmuch.thread import Threads
-from cnotmuch.message import Messages
+from cnotmuch.message import Messages, Message
from cnotmuch.tag import Tags
class Database(object):