Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id B00C540D155 for ; Thu, 28 Oct 2010 05:37:36 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -2 X-Spam-Level: X-Spam-Status: No, score=-2 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_NONE=-0.0001] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HSj9dBr0CodG for ; Thu, 28 Oct 2010 05:37:25 -0700 (PDT) Received: from homiemail-a12.g.dreamhost.com (caiajhbdcaib.dreamhost.com [208.97.132.81]) by olra.theworths.org (Postfix) with ESMTP id 870DB40D160 for ; Thu, 28 Oct 2010 05:37:25 -0700 (PDT) Received: from homiemail-a12.g.dreamhost.com (localhost [127.0.0.1]) by homiemail-a12.g.dreamhost.com (Postfix) with ESMTP id 259D2714086; Thu, 28 Oct 2010 05:37:25 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=SSpaeth.de; h=from:to:cc:subject :date:message-id; q=dns; s=sspaeth.de; b=nal9IjgGikdUAkQnXMAkMbT i84Ka2/StPdWb4ZJDwteDmxA1ZEGz77NamgYn+RyzYQcrf7qPZIGEbI/RpbmRGNX n4jA7dx8jjH7EHQlQP1jgWyJy9XAcjwgYgIddWc4EIbLgvy75E75gzX5iHSSO12V d8uhMxPMDPBX4XuAtE80= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=SSpaeth.de; h=from:to:cc :subject:date:message-id; s=sspaeth.de; bh=KC7w45SMF7f4f5mBZNjmp GHN1E0=; b=GaW+3JspP1+OOXRGyI1ygZamuSa+TVrbQkdUbDy23kc9XeHNhPUgD 5tnMxT3aEoZHsxIKRXMgj5Rd+ihnYFlac7DEZuyBKd5ATo6uZt7pFDSVfqBBrFMW sSyZiFWpzEmL5Tipn1B1NAdNln7Bmd/dbnW60+KchLrjTZ3lGhFKm0= Received: from spaetzbook.sspaeth.de (mtec-hg-docking-2-dhcp-016.ethz.ch [82.130.121.16]) (Authenticated sender: fax@sspaeth.de) by homiemail-a12.g.dreamhost.com (Postfix) with ESMTPA id 8D40271406A; Thu, 28 Oct 2010 05:37:23 -0700 (PDT) Received: by spaetzbook.sspaeth.de (sSMTP sendmail emulation); Thu, 28 Oct 2010 14:37:22 +0200 From: Sebastian Spaeth To: notmuch@notmuchmail.org Subject: [PATCH 1/2] python: Import explicit including package name Date: Thu, 28 Oct 2010 14:37:15 +0200 Message-Id: <1288269436-730-1-git-send-email-Sebastian@SSpaeth.de> X-Mailer: git-send-email 1.7.1 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 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: Thu, 28 Oct 2010 12:37:36 -0000 To make python3 happy Signed-off-by: Sebastian Spaeth --- Please find these two patches making the notmuch module (more) python 3k compliant. I could not push them directly for some reason. bindings/python/notmuch/__init__.py | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bindings/python/notmuch/__init__.py b/bindings/python/notmuch/__init__.py index 56a4f2a..5ba1337 100644 --- a/bindings/python/notmuch/__init__.py +++ b/bindings/python/notmuch/__init__.py @@ -51,10 +51,10 @@ along with notmuch. If not, see . Copyright 2010 Sebastian Spaeth ' """ -from database import Database, Query -from message import Messages, Message -from thread import Threads, Thread -from tag import Tags +from notmuch.database import Database, Query +from notmuch.message import Messages, Message +from notmuch.thread import Threads, Thread +from notmuch.tag import Tags from notmuch.globals import nmlib, STATUS, NotmuchError __LICENSE__="GPL v3+" __VERSION__='0.2.2' -- 1.7.1