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 569CD429E25 for ; Wed, 11 Jul 2012 02:10:00 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.379 X-Spam-Level: X-Spam-Status: No, score=0.379 tagged_above=-999 required=5 tests=[NO_DNS_FOR_FROM=0.379] autolearn=disabled 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 DT3ppocGboYO for ; Wed, 11 Jul 2012 02:09:56 -0700 (PDT) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id 40C25431FAE for ; Wed, 11 Jul 2012 02:09:56 -0700 (PDT) Received: by guru.guru-group.fi (Postfix, from userid 501) id 8740C100386; Wed, 11 Jul 2012 12:10:07 +0300 (EEST) From: Tomi Ollila To: notmuch@notmuchmail.org Subject: [PATCH 1/2] contrib/nmbug/ nmbug-status: restored out['subject']... block level Date: Wed, 11 Jul 2012 12:10:04 +0300 Message-Id: <1341997805-19427-1-git-send-email-tomi.ollila@iki.fi> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1341959351-16183-1-git-send-email-tomi.ollila@iki.fi> References: <1341959351-16183-1-git-send-email-tomi.ollila@iki.fi> Cc: Tomi Ollila 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: Wed, 11 Jul 2012 09:10:00 -0000 In reformatting the line 111 accidentally indented to one indentation level too much (happens easily when interactively indenting python code using emacs). The line now has 4 spacess less indentation, thus restoring it to the block level it belongs. --- contrib/nmbug/nmbug-status | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/nmbug/nmbug-status b/contrib/nmbug/nmbug-status index 6aa86a0..8c6377e 100755 --- a/contrib/nmbug/nmbug-status +++ b/contrib/nmbug/nmbug-status @@ -108,8 +108,9 @@ def print_view(title, query, comment): br = '
' else: br = '' - out['subject'] = '%s' \ - % (urllib.quote(mid), out['subject']) + + out['subject'] = '%s' \ + % (urllib.quote(mid), out['subject']) print " %s %s" % (br, out['date']) print "%s %s" % (br, out['id']) -- 1.7.1