X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch%2Fdatabase.py;h=f141c03ef462b813be27ca58a0a8a323a1e9810c;hp=f02ec408403d4258a33fb89c9378601c5018a1ca;hb=2123bdd7fc61ede26a68f6c521fcdc44cb80ab77;hpb=eb10841de7f988f8cf1475cb4495793749d13c51 diff --git a/notmuch/database.py b/notmuch/database.py index f02ec408..f141c03e 100644 --- a/notmuch/database.py +++ b/notmuch/database.py @@ -19,10 +19,10 @@ Copyright 2010 Sebastian Spaeth ' 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, Message -from cnotmuch.tag import Tags +from notmuch.globals import nmlib, STATUS, NotmuchError, Enum +from notmuch.thread import Threads +from notmuch.message import Messages, Message +from notmuch.tag import Tags class Database(object): """Represents a notmuch database (wraps notmuch_database_t) @@ -769,7 +769,7 @@ class Directory(object): def __repr__(self): """Object representation""" - return "" % self._path + return "" % self._path def __del__(self): """Close and free the Directory"""