Re: [feature request] emacs: use `notmuch insert` for FCC
[notmuch-archives.git] / 76 / 57e46fc8410527728fd41e632a634d6b07923f
1 Return-Path: <dkg@fifthhorseman.net>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5  by arlo.cworth.org (Postfix) with ESMTP id 1B8B06DE0AC2\r
6  for <notmuch@notmuchmail.org>; Sat, 12 Dec 2015 11:22:24 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.929\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.929 tagged_above=-999 required=5\r
12  tests=[AWL=-0.929] autolearn=disabled\r
13 Received: from arlo.cworth.org ([127.0.0.1])\r
14  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
15  with ESMTP id V3nbMPgR8iwr for <notmuch@notmuchmail.org>;\r
16  Sat, 12 Dec 2015 11:22:22 -0800 (PST)\r
17 Received: from che.mayfirst.org (che.mayfirst.org [209.234.253.108])\r
18  by arlo.cworth.org (Postfix) with ESMTP id 431EC6DE005F\r
19  for <notmuch@notmuchmail.org>; Sat, 12 Dec 2015 11:22:22 -0800 (PST)\r
20 Received: from fifthhorseman.net (h-67-101-29-224.nycm.ny.dynamic.megapath.net\r
21  [67.101.29.224])\r
22  by che.mayfirst.org (Postfix) with ESMTPSA id 43C34F984\r
23  for <notmuch@notmuchmail.org>; Sat, 12 Dec 2015 14:22:20 -0500 (EST)\r
24 Received: by fifthhorseman.net (Postfix, from userid 1000)\r
25  id 47D191FF94; Sat, 12 Dec 2015 14:22:12 -0500 (EST)\r
26 From: Daniel Kahn Gillmor <dkg@fifthhorseman.net>\r
27 To: Notmuch Mail <notmuch@notmuchmail.org>\r
28 Subject: [PATCH] fix notmuch python binding argument for filenames_destroy\r
29 Date: Sat, 12 Dec 2015 14:22:12 -0500\r
30 Message-Id: <1449948132-11950-1-git-send-email-dkg@fifthhorseman.net>\r
31 X-Mailer: git-send-email 2.6.2\r
32 X-BeenThere: notmuch@notmuchmail.org\r
33 X-Mailman-Version: 2.1.20\r
34 Precedence: list\r
35 List-Id: "Use and development of the notmuch mail system."\r
36  <notmuch.notmuchmail.org>\r
37 List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
38  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
39 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
40 List-Post: <mailto:notmuch@notmuchmail.org>\r
41 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
42 List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
43  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
44 X-List-Received-Date: Sat, 12 Dec 2015 19:22:24 -0000\r
45 \r
46 ---\r
47  bindings/python/notmuch/filenames.py | 2 +-\r
48  1 file changed, 1 insertion(+), 1 deletion(-)\r
49 \r
50 diff --git a/bindings/python/notmuch/filenames.py b/bindings/python/notmuch/filenames.py\r
51 index 229f414..96b22c6 100644\r
52 --- a/bindings/python/notmuch/filenames.py\r
53 +++ b/bindings/python/notmuch/filenames.py\r
54 @@ -123,7 +123,7 @@ class Filenames(Python3StringMixIn):\r
55          return "\n".join(self)\r
56  \r
57      _destroy = nmlib.notmuch_filenames_destroy\r
58 -    _destroy.argtypes = [NotmuchMessageP]\r
59 +    _destroy.argtypes = [NotmuchFilenamesP]\r
60      _destroy.restype = None\r
61  \r
62      def __del__(self):\r
63 -- \r
64 2.6.2\r
65 \r