From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 8E3B66DE218D for ; Sun, 26 Feb 2017 13:22:12 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.005 X-Spam-Level: X-Spam-Status: No, score=-0.005 tagged_above=-999 required=5 tests=[AWL=0.006, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3yAaUGEqJ1ND for ; Sun, 26 Feb 2017 13:22:12 -0800 (PST) Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) by arlo.cworth.org (Postfix) with ESMTPS id 47B7D6DE20DE for ; Sun, 26 Feb 2017 13:22:05 -0800 (PST) Received: from remotemail by fethera.tethera.net with local (Exim 4.84_2) (envelope-from ) id 1ci6Fy-0000sE-9t; Sun, 26 Feb 2017 16:21:26 -0500 Received: (nullmailer pid 6579 invoked by uid 1000); Sun, 26 Feb 2017 21:21:57 -0000 From: David Bremner To: David Bremner , notmuch@notmuchmail.org 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 Message-Id: <20170226212135.4119-5-david@tethera.net> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170226212135.4119-1-david@tethera.net> References: <20170223014656.9500-1-david@tethera.net> <20170226212135.4119-1-david@tethera.net> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2017 21:22:12 -0000 --- 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