From: Sebastian Spaeth Date: Tue, 30 Mar 2010 14:10:07 +0000 (+0200) Subject: database.py: also need to import Message X-Git-Tag: 0.3~121^2~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=775d3bc31384726e707057d30ba84b0906a286c1;p=notmuch.git database.py: also need to import Message --- diff --git a/cnotmuch/database.py b/cnotmuch/database.py index 44fd3154..bb8a9632 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):