[PATCH 4/6] fixup! lib: replace deprecated n_q_search_messages with status returning version

Subject: [PATCH 4/6] fixup! lib: replace deprecated n_q_search_messages with status returning version

Date: Sun, 26 Feb 2017 17:21:33 -0400

To: David Bremner, notmuch@notmuchmail.org

Cc:

From: David Bremner


---
 bindings/python/notmuch/query.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bindings/python/notmuch/query.py b/bindings/python/notmuch/query.py
index 9942a2bc..a91bb740 100644
--- a/bindings/python/notmuch/query.py
+++ b/bindings/python/notmuch/query.py
@@ -177,7 +177,7 @@ class Query(object):
         """
         self._assert_query_is_initialized()
         msgs_p = NotmuchMessagesP() # == NULL
-        status = Query._search_messages_st(self._query, byref(msgs_p))
+        status = Query._search_messages(self._query, byref(msgs_p))
         if status != 0:
             raise NotmuchError(status)
 
-- 
2.11.0


Thread: