]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/__init__.py
python: move the exception classes into error.py
[notmuch] / bindings / python / notmuch / __init__.py
index b8f36108dfde5d94f56e3db0d17169680224c772..5561624e11d72b365854588d6fab6a71d1a7d1bd 100644 (file)
@@ -53,14 +53,15 @@ Copyright 2010-2011 Sebastian Spaeth <Sebastian@SSpaeth.de>
 """
 from .database import Database
 from .directory import Directory
-from .filename import Filenames
+from .filenames import Filenames
 from .message import Message
 from .messages import Messages
 from .query import Query
 from .tag import Tags
-from .thread import Threads, Thread
-from .globals import (
-    nmlib,
+from .thread import Thread
+from .threads import Threads
+from .globals import nmlib
+from .errors import (
     STATUS,
     NotmuchError,
     OutOfMemoryError,