aboutsummaryrefslogtreecommitdiff
path: root/bindings/python/notmuch/thread.py
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2012-05-17 16:58:53 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2012-05-17 16:58:53 +0200
commit05c3e83bd272635ecc5e86d767250de1eb680a09 (patch)
tree52fdc632364a5bf58da89199b6f4f1df0c7d7067 /bindings/python/notmuch/thread.py
parent5bc5471c54f30642f866d4537f7a1a6b35222dc5 (diff)
python: use relative imports
Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
Diffstat (limited to 'bindings/python/notmuch/thread.py')
-rw-r--r--bindings/python/notmuch/thread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python/notmuch/thread.py b/bindings/python/notmuch/thread.py
index 2f60d49..789f9a0 100644
--- a/bindings/python/notmuch/thread.py
+++ b/bindings/python/notmuch/thread.py
@@ -18,7 +18,7 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>
"""
from ctypes import c_char_p, c_long, c_int
-from notmuch.globals import (
+from .globals import (
nmlib,
NotmuchThreadP,
NotmuchMessagesP,
@@ -29,7 +29,7 @@ from .errors import (
NotInitializedError,
)
from .messages import Messages
-from notmuch.tag import Tags
+from .tag import Tags
from datetime import date
class Thread(object):