]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/query.py
Merge tag '0.13.2'
[notmuch] / bindings / python / notmuch / query.py
index 27bc4df79a1e97d54e385daeeca06a32a3847ff8..4abba5bdcd165fa277e60c5fc6593c2a2bc84d91 100644 (file)
@@ -18,7 +18,7 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>
 """
 
 from ctypes import c_char_p, c_uint
-from notmuch.globals import (
+from .globals import (
     nmlib,
     Enum,
     _str,
@@ -203,5 +203,5 @@ class Query(object):
 
     def __del__(self):
         """Close and free the Query"""
-        if self._query is not None:
+        if self._query:
             self._destroy(self._query)