--- /dev/null
+Return-Path: <gmn-notmuch@m.gmane.org>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 26E356DE02CB\r
+ for <notmuch@notmuchmail.org>; Wed, 6 May 2015 16:22:18 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 1.429\r
+X-Spam-Level: *\r
+X-Spam-Status: No, score=1.429 tagged_above=-999 required=5 tests=[AWL=0.267, \r
+ FSL_HELO_BARE_IP_2=1.539, RCVD_IN_DNSWL_LOW=-0.7,\r
+ RCVD_NUMERIC_HELO=0.865, RP_MATCHES_RCVD=-0.55, SPF_HELO_PASS=-0.001,\r
+ SPF_PASS=-0.001, T_HEADER_FROM_DIFFERENT_DOMAINS=0.01]\r
+ autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id 8oCvpdsg1CzL for <notmuch@notmuchmail.org>;\r
+ Wed, 6 May 2015 16:22:15 -0700 (PDT)\r
+Received: from plane.gmane.org (plane.gmane.org [80.91.229.3])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id EC41F6DE01F5\r
+ for <notmuch@notmuchmail.org>; Wed, 6 May 2015 16:22:14 -0700 (PDT)\r
+Received: from list by plane.gmane.org with local (Exim 4.69)\r
+ (envelope-from <gmn-notmuch@m.gmane.org>) id 1Yq8dj-0004uR-Gq\r
+ for notmuch@notmuchmail.org; Thu, 07 May 2015 01:22:07 +0200\r
+Received: from 151.62.96.5 ([151.62.96.5])\r
+ by main.gmane.org with esmtp (Gmexim 0.1 (Debian))\r
+ id 1AlnuQ-0007hv-00\r
+ for <notmuch@notmuchmail.org>; Thu, 07 May 2015 01:22:07 +0200\r
+Received: from lele by 151.62.96.5 with local (Gmexim 0.1 (Debian))\r
+ id 1AlnuQ-0007hv-00\r
+ for <notmuch@notmuchmail.org>; Thu, 07 May 2015 01:22:07 +0200\r
+X-Injected-Via-Gmane: http://gmane.org/\r
+To: notmuch@notmuchmail.org\r
+From: Lele Gaifax <lele@metapensiero.it>\r
+Subject: Repost: Notmuch 0.20~rc1\r
+Date: Thu, 07 May 2015 01:21:47 +0200\r
+Organization: Nautilus Entertainments\r
+Lines: 38\r
+Message-ID: <877fslcmwk.fsf@nautilus.nautilus>\r
+References: <70D1DC25-148E-425E-B1E9-4F2FFC9AFF1A@metapensiero.it>\r
+Mime-Version: 1.0\r
+Content-Type: text/plain; charset=utf-8\r
+Content-Transfer-Encoding: 8bit\r
+X-Complaints-To: usenet@ger.gmane.org\r
+X-Gmane-NNTP-Posting-Host: 151.62.96.5\r
+User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5.50 (gnu/linux)\r
+Cancel-Lock: sha1:SdizydiJspSXzrJZT7llGov0+A8=\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.18\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Wed, 06 May 2015 23:22:18 -0000\r
+\r
+Hi all,\r
+\r
+I notice a small glitch in the latest version. Yesterday I upgraded my Debian\r
+sid and got 0.20~rc1, and while it seems working great, my i3 status bar,\r
+which displays the number of unread emails, didn't work anymore.\r
+\r
+A quick look revelead the reason:\r
+\r
+ $ python3 status.py \r
+ Traceback (most recent call last):\r
+ File "status.py", line 11, in <module>\r
+ from notmuch import Query\r
+ File "/usr/lib/python3/dist-packages/notmuch/__init__.py", line 54, in <module>\r
+ from .database import Database\r
+ File "/usr/lib/python3/dist-packages/notmuch/database.py", line 24, in <module>\r
+ from .globals import (\r
+ File "/usr/lib/python3/dist-packages/notmuch/globals.py", line 21, in <module>\r
+ from version import SOVERSION\r
+ ImportError: No module named 'version'\r
+\r
+The first lines of globals.py are:\r
+\r
+ from ctypes import CDLL, Structure, POINTER\r
+ from version import SOVERSION\r
+\r
+but Python3 by default uses "absolute imports" (PEP0328) by default, so I\r
+think that for compatibility between Python2 and Python3 that should read\r
+\r
+ from ctypes import CDLL, Structure, POINTER\r
+ from notmuch.version import SOVERSION\r
+\r
+Manually tweaking that source fixed the problem for me.\r
+\r
+Thank you&bye, lele.\r
+-- \r
+nickname: Lele Gaifax | Quando vivrò di quello che ho pensato ieri\r
+real: Emanuele Gaifas | comincerò ad aver paura di chi mi copia.\r
+lele@metapensiero.it | -- Fortunato Depero, 1929.\r
+\r