database.py: also need to import Message

This commit is contained in:
Sebastian Spaeth 2010-03-30 16:10:07 +02:00
parent f70b84cb39
commit 775d3bc313

View file

@ -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):