[PATCH v4 0/7] emacs: Improve the cited message included in replies
[notmuch-archives.git] / 69 / f2dd66793b13a775098e7022c28b6370562f6d
1 Return-Path: <bremner@tesseract.cs.unb.ca>\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 7C0166DE1147\r
6  for <notmuch@notmuchmail.org>; Sun, 17 May 2015 06:05:52 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0.305\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.305 tagged_above=-999 required=5 tests=[AWL=0.295, \r
12  T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] 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 naN4xwLvHn2q for <notmuch@notmuchmail.org>;\r
16  Sun, 17 May 2015 06:05:49 -0700 (PDT)\r
17 Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
18  [87.98.215.224])\r
19  by arlo.cworth.org (Postfix) with ESMTPS id 88FC46DE1018\r
20  for <notmuch@notmuchmail.org>; Sun, 17 May 2015 06:05:49 -0700 (PDT)\r
21 Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
22  4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
23  id 1YtyF6-0007eL-1v; Sun, 17 May 2015 13:04:32 +0000\r
24 Received: (nullmailer pid 15998 invoked by uid 1000); Sun, 17 May 2015\r
25  13:03:58 -0000\r
26 From: David Bremner <david@tethera.net>\r
27 To: David Bremner <david@tethera.net>, Lele Gaifax <lele@metapensiero.it>,\r
28  notmuch@notmuchmail.org\r
29 Subject: [PATCH] python: use absolute import for SOVERSION\r
30 Date: Sun, 17 May 2015 15:03:54 +0200\r
31 Message-Id: <1431867834-15936-1-git-send-email-david@tethera.net>\r
32 X-Mailer: git-send-email 2.1.4\r
33 In-Reply-To: <1431152030-24171-1-git-send-email-david@tethera.net>\r
34 References: <1431152030-24171-1-git-send-email-david@tethera.net>\r
35 X-BeenThere: notmuch@notmuchmail.org\r
36 X-Mailman-Version: 2.1.18\r
37 Precedence: list\r
38 List-Id: "Use and development of the notmuch mail system."\r
39  <notmuch.notmuchmail.org>\r
40 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
41  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
42 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
43 List-Post: <mailto:notmuch@notmuchmail.org>\r
44 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
45 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
46  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
47 X-List-Received-Date: Sun, 17 May 2015 13:05:52 -0000\r
48 \r
49 Apparently python3 needs this.\r
50 ---\r
51 \r
52 It seems like the previous sending of this patch didn't make it to the list.\r
53 \r
54  bindings/python/notmuch/globals.py | 2 +-\r
55  1 file changed, 1 insertion(+), 1 deletion(-)\r
56 \r
57 diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py\r
58 index 4c49d51..70cfdc3 100644\r
59 --- a/bindings/python/notmuch/globals.py\r
60 +++ b/bindings/python/notmuch/globals.py\r
61 @@ -18,7 +18,7 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>\r
62  """\r
63  \r
64  from ctypes import CDLL, Structure, POINTER\r
65 -from version import SOVERSION\r
66 +from notmuch.version import SOVERSION\r
67  \r
68  #-----------------------------------------------------------------------------\r
69  #package-global instance of the notmuch library\r
70 -- \r
71 2.1.4\r
72 \r