]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/python/notmuch/database.py
python: Really throw an error if search_threads() fails
[notmuch] / bindings / python / notmuch / database.py
index 84cf79bbad13f90e8d438bb51d4fac44a818bf4a..8f62d18cbe2547c20bb60dbb7848b55c006dbf29 100644 (file)
@@ -580,7 +580,7 @@ class Query(object):
         threads_p = Query._search_threads(self._query)
 
         if threads_p is None:
         threads_p = Query._search_threads(self._query)
 
         if threads_p is None:
-            NotmuchError(STATUS.NULL_POINTER)
+            raise NotmuchError(STATUS.NULL_POINTER)
 
         return Threads(threads_p,self)
 
 
         return Threads(threads_p,self)