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 9B6E0431E82 for ; Wed, 11 Jul 2012 04:58:53 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] 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 ySPytP0zv6C0 for ; Wed, 11 Jul 2012 04:58:52 -0700 (PDT) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id 9451F431FAE for ; Wed, 11 Jul 2012 04:58:52 -0700 (PDT) Received: by guru.guru-group.fi (Postfix, from userid 501) id BA7F7100386; Wed, 11 Jul 2012 14:59:02 +0300 (EEST) From: Tomi Ollila To: notmuch@notmuchmail.org Subject: Re: [PATCH 1/2] contrib/nmbug/ nmbug-status: restored out['subject']... block level In-Reply-To: <1341997805-19427-1-git-send-email-tomi.ollila@iki.fi> References: <1341959351-16183-1-git-send-email-tomi.ollila@iki.fi> <1341997805-19427-1-git-send-email-tomi.ollila@iki.fi> User-Agent: Notmuch/0.13.2+74~g65b26b0 (http://notmuchmail.org) Emacs/23.1.1 (x86_64-redhat-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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 11:58:53 -0000 On Wed, Jul 11 2012, Tomi Ollila wrote: > 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']) > + Damn, trailing whitespace above. I forgot to follow my own rule and attempt to 'git am' these patches before sending. The next patch fixes this along other changes it done. To lessen (patch) email flow I don't fix this at this time in a hope that these 2 patches will be pushed. Sorry for the inconvenience. Tomi > + out['subject'] = '%s' \ > + % (urllib.quote(mid), out['subject']) > > print " %s %s" % (br, out['date']) > print "%s %s" % (br, out['id']) > -- > 1.7.1