Re: [PATCH 0/4] Allow specifying alternate names for addresses in other_email
[notmuch-archives.git] / 04 / c010c6dcaf2048f8cce32e8d24f962a37e9019
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 A5BE56DE1649\r
6  for <notmuch@notmuchmail.org>; Fri,  8 May 2015 23:15:36 -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.315\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.315 tagged_above=-999 required=5 tests=[AWL=0.305, \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 hivHekXoCqU9 for <notmuch@notmuchmail.org>;\r
16  Fri,  8 May 2015 23:15:33 -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 9B85D6DE1641\r
20  for <notmuch@notmuchmail.org>; Fri,  8 May 2015 23:15:33 -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 1Yqy1n-0005ej-Do; Sat, 09 May 2015 06:14:23 +0000\r
24 Received: (nullmailer pid 24214 invoked by uid 1000); Sat, 09 May 2015\r
25  06:13:59 -0000\r
26 From: David Bremner <david@tethera.net>\r
27 To: Lele Gaifax <lele@metapensiero.it>, notmuch@notmuchmail.org\r
28 Subject: [PATCH] python: use absolute import for SOVERSION\r
29 Date: Sat,  9 May 2015 08:13:50 +0200\r
30 Message-Id: <1431152030-24171-1-git-send-email-david@tethera.net>\r
31 X-Mailer: git-send-email 2.1.4\r
32 In-Reply-To: <877fslcmwk.fsf@nautilus.nautilus>\r
33 References: <877fslcmwk.fsf@nautilus.nautilus>\r
34 X-BeenThere: notmuch@notmuchmail.org\r
35 X-Mailman-Version: 2.1.18\r
36 Precedence: list\r
37 List-Id: "Use and development of the notmuch mail system."\r
38  <notmuch.notmuchmail.org>\r
39 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
40  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
41 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
42 List-Post: <mailto:notmuch@notmuchmail.org>\r
43 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
44 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
45  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
46 X-List-Received-Date: Sat, 09 May 2015 06:15:36 -0000\r
47 \r
48 Apparently python3 needs this.\r
49 ---\r
50  bindings/python/notmuch/globals.py | 2 +-\r
51  1 file changed, 1 insertion(+), 1 deletion(-)\r
52 \r
53 diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py\r
54 index 4c49d51..70cfdc3 100644\r
55 --- a/bindings/python/notmuch/globals.py\r
56 +++ b/bindings/python/notmuch/globals.py\r
57 @@ -18,7 +18,7 @@ Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>\r
58  """\r
59  \r
60  from ctypes import CDLL, Structure, POINTER\r
61 -from version import SOVERSION\r
62 +from notmuch.version import SOVERSION\r
63  \r
64  #-----------------------------------------------------------------------------\r
65  #package-global instance of the notmuch library\r
66 -- \r
67 2.1.4\r
68 \r