]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/database.py
python: move the exception classes into error.py
[notmuch] / bindings / python / notmuch / database.py
index 800264b7bd157f0e890714e21fdf7741b63f33d5..44d40fdb322acc4ac2af5686e01ea856212f97b2 100644 (file)
@@ -22,12 +22,6 @@ import codecs
 from ctypes import c_char_p, c_void_p, c_uint, byref, POINTER
 from notmuch.globals import (
     nmlib,
-    STATUS,
-    FileError,
-    NotmuchError,
-    NullPointerError,
-    NotInitializedError,
-    ReadOnlyDatabaseError,
     Enum,
     _str,
     NotmuchDatabaseP,
@@ -35,6 +29,14 @@ from notmuch.globals import (
     NotmuchMessageP,
     NotmuchTagsP,
 )
+from .errors import (
+    STATUS,
+    FileError,
+    NotmuchError,
+    NullPointerError,
+    NotInitializedError,
+    ReadOnlyDatabaseError,
+)
 from notmuch.message import Message
 from notmuch.tag import Tags
 from .query import Query