]> git.notmuchmail.org Git - notmuch/commitdiff
python: Import explicit including package name
authorSebastian Spaeth <Sebastian@SSpaeth.de>
Thu, 28 Oct 2010 12:37:15 +0000 (14:37 +0200)
committerCarl Worth <cworth@cworth.org>
Thu, 28 Oct 2010 19:12:04 +0000 (12:12 -0700)
To make python3 happy

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
bindings/python/notmuch/__init__.py

index 56a4f2a4ef143fc0f7db473282bf027299cce50e..5ba1337f2ab43b3c36e682686febc2361fe35440 100644 (file)
@@ -51,10 +51,10 @@ along with notmuch.  If not, see <http://www.gnu.org/licenses/>.
 
 Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
 """
 
 Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
 """
-from database import Database, Query
-from message import Messages, Message
-from thread import Threads, Thread
-from tag import Tags
+from notmuch.database import Database, Query
+from notmuch.message import Messages, Message
+from notmuch.thread import Threads, Thread
+from notmuch.tag import Tags
 from notmuch.globals import nmlib, STATUS, NotmuchError
 __LICENSE__="GPL v3+"
 __VERSION__='0.2.2'
 from notmuch.globals import nmlib, STATUS, NotmuchError
 __LICENSE__="GPL v3+"
 __VERSION__='0.2.2'