Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 1B8B06DE0AC2 for ; Sat, 12 Dec 2015 11:22:24 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.929 X-Spam-Level: X-Spam-Status: No, score=-0.929 tagged_above=-999 required=5 tests=[AWL=-0.929] 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 V3nbMPgR8iwr for ; Sat, 12 Dec 2015 11:22:22 -0800 (PST) Received: from che.mayfirst.org (che.mayfirst.org [209.234.253.108]) by arlo.cworth.org (Postfix) with ESMTP id 431EC6DE005F for ; Sat, 12 Dec 2015 11:22:22 -0800 (PST) Received: from fifthhorseman.net (h-67-101-29-224.nycm.ny.dynamic.megapath.net [67.101.29.224]) by che.mayfirst.org (Postfix) with ESMTPSA id 43C34F984 for ; Sat, 12 Dec 2015 14:22:20 -0500 (EST) Received: by fifthhorseman.net (Postfix, from userid 1000) id 47D191FF94; Sat, 12 Dec 2015 14:22:12 -0500 (EST) From: Daniel Kahn Gillmor To: Notmuch Mail Subject: [PATCH] fix notmuch python binding argument for filenames_destroy Date: Sat, 12 Dec 2015 14:22:12 -0500 Message-Id: <1449948132-11950-1-git-send-email-dkg@fifthhorseman.net> X-Mailer: git-send-email 2.6.2 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.20 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: Sat, 12 Dec 2015 19:22:24 -0000 --- bindings/python/notmuch/filenames.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/notmuch/filenames.py b/bindings/python/notmuch/filenames.py index 229f414..96b22c6 100644 --- a/bindings/python/notmuch/filenames.py +++ b/bindings/python/notmuch/filenames.py @@ -123,7 +123,7 @@ class Filenames(Python3StringMixIn): return "\n".join(self) _destroy = nmlib.notmuch_filenames_destroy - _destroy.argtypes = [NotmuchMessageP] + _destroy.argtypes = [NotmuchFilenamesP] _destroy.restype = None def __del__(self): -- 2.6.2