]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/directory.py
Merge tag '0.12_rc2'
[notmuch] / bindings / python / notmuch / directory.py
index b679aa293dc21006a06102e612e2cbca631ceb19..284cbdced126952587110f71d8e49d38d4bcd8be 100644 (file)
@@ -20,11 +20,13 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
 from ctypes import c_uint, c_long
 from notmuch.globals import (
     nmlib,
+    NotmuchDirectoryP,
+    NotmuchFilenamesP
+)
+from .errors import (
     STATUS,
     NotmuchError,
     NotInitializedError,
-    NotmuchDirectoryP,
-    NotmuchFilenamesP
 )
 from .filenames import Filenames
 
@@ -175,7 +177,7 @@ class Directory(object):
 
     _destroy = nmlib.notmuch_directory_destroy
     _destroy.argtypes = [NotmuchDirectoryP]
-    _destroy.argtypes = None
+    _destroy.restype = None
 
     def __del__(self):
         """Close and free the Directory"""