]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/message.py
python: move the exception classes into error.py
[notmuch] / bindings / python / notmuch / message.py
index 20ba9cb918cbca07d05a4266d63a02898895334d..9eb4feef4d1d9f61c0316edbb5e0b9e624318b00 100644 (file)
@@ -26,17 +26,19 @@ from .globals import (
     Enum,
     _str,
     Python3StringMixIn,
-    STATUS,
-    NotmuchError,
-    NullPointerError,
-    NotInitializedError,
     NotmuchTagsP,
     NotmuchMessageP,
     NotmuchMessagesP,
     NotmuchFilenamesP,
 )
+from .errors import (
+    STATUS,
+    NotmuchError,
+    NullPointerError,
+    NotInitializedError,
+)
 from .tag import Tags
-from .filename import Filenames
+from .filenames import Filenames
 
 import email
 try: