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 7C0166DE1147 for ; Sun, 17 May 2015 06:05:52 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: 0.305 X-Spam-Level: X-Spam-Status: No, score=0.305 tagged_above=-999 required=5 tests=[AWL=0.295, T_HEADER_FROM_DIFFERENT_DOMAINS=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 naN4xwLvHn2q for ; Sun, 17 May 2015 06:05:49 -0700 (PDT) Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net [87.98.215.224]) by arlo.cworth.org (Postfix) with ESMTPS id 88FC46DE1018 for ; Sun, 17 May 2015 06:05:49 -0700 (PDT) Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim 4.80) (envelope-from ) id 1YtyF6-0007eL-1v; Sun, 17 May 2015 13:04:32 +0000 Received: (nullmailer pid 15998 invoked by uid 1000); Sun, 17 May 2015 13:03:58 -0000 From: David Bremner To: David Bremner , Lele Gaifax , notmuch@notmuchmail.org Subject: [PATCH] python: use absolute import for SOVERSION Date: Sun, 17 May 2015 15:03:54 +0200 Message-Id: <1431867834-15936-1-git-send-email-david@tethera.net> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1431152030-24171-1-git-send-email-david@tethera.net> References: <1431152030-24171-1-git-send-email-david@tethera.net> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.18 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, 17 May 2015 13:05:52 -0000 Apparently python3 needs this. --- It seems like the previous sending of this patch didn't make it to the list. bindings/python/notmuch/globals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py index 4c49d51..70cfdc3 100644 --- a/bindings/python/notmuch/globals.py +++ b/bindings/python/notmuch/globals.py @@ -18,7 +18,7 @@ Copyright 2010 Sebastian Spaeth """ from ctypes import CDLL, Structure, POINTER -from version import SOVERSION +from notmuch.version import SOVERSION #----------------------------------------------------------------------------- #package-global instance of the notmuch library -- 2.1.4