]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/directory.py
version: bump to 0.15.1
[notmuch] / bindings / python / notmuch / directory.py
index 667d3a4b64986c4901d0b9f0e52f43334660e120..3b0a525dc9083e2c6bcb6c019fa729f42d389fd7 100644 (file)
@@ -18,7 +18,7 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>
 """
 
 from ctypes import c_uint, c_long
-from notmuch.globals import (
+from .globals import (
     nmlib,
     NotmuchDirectoryP,
     NotmuchFilenamesP
@@ -181,5 +181,5 @@ class Directory(object):
 
     def __del__(self):
         """Close and free the Directory"""
-        if self._dir_p is not None:
+        if self._dir_p:
             self._destroy(self._dir_p)