Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id F3BFB6DE1B44 for ; Wed, 30 Dec 2015 13:06:26 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" X-Spam-Flag: NO X-Spam-Score: 0.039 X-Spam-Level: X-Spam-Status: No, score=0.039 tagged_above=-999 required=5 tests=[AWL=0.040, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, SPF_PASS=-0.001] 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 4E7Cf1y5n5Nl for ; Wed, 30 Dec 2015 13:06:25 -0800 (PST) Received: from resqmta-po-11v.sys.comcast.net (resqmta-po-11v.sys.comcast.net [96.114.154.170]) by arlo.cworth.org (Postfix) with ESMTPS id CD1216DE1AF0 for ; Wed, 30 Dec 2015 13:06:22 -0800 (PST) Received: from resomta-po-13v.sys.comcast.net ([96.114.154.237]) by resqmta-po-11v.sys.comcast.net with comcast id zx5y1r00157bBgG01x6NRj; Wed, 30 Dec 2015 21:06:22 +0000 Received: from mail.tremily.us ([73.221.72.168]) by resomta-po-13v.sys.comcast.net with comcast id zx4K1r00V3dr3C901x4LKs; Wed, 30 Dec 2015 21:04:21 +0000 Received: from ullr.tremily.us (unknown [192.168.10.7]) by mail.tremily.us (Postfix) with ESMTPS id E65211B2C6BE; Wed, 30 Dec 2015 13:04:18 -0800 (PST) Received: (nullmailer pid 25460 invoked by uid 1000); Wed, 30 Dec 2015 21:04:25 -0000 From: "W. Trevor King" To: notmuch@notmuchmail.org Cc: David Bremner , Tomi Ollila , Jani Nikula , Carl Worth , "W. Trevor King" Subject: [PATCH 2/2] nmbug-status: Fix unbalanced

tags in default header/footer Date: Wed, 30 Dec 2015 13:04:13 -0800 Message-Id: <957f5471917ebfebf0ebe30cc4c7527ed096ea89.1451509249.git.wking@tremily.us> X-Mailer: git-send-email 2.1.0.60.g85f0837 In-Reply-To: References: In-Reply-To: References: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20140121; t=1451509582; bh=KnOTFZOpBCs0MwZ70U8ouIkjfq/+dUupfC/rqtHKNcs=; h=Received:Received:Received:Received:From:To:Subject:Date: Message-Id; b=UyoLVgNRRNGrZlVinplXj3j2mhbA+U5CTNnXvoHzyt54L6p5XY+kqXIU5FVYyBuak xAvLLiOlQiVWGOrrnj655kPtGmOWvcvmtLLE6PmspR5UKGXoRu0sMo62rZvrATZPpb sahOSFlQNAM4ZPnM63t+qgfPFYB5M6tykmdjAZXb7SQleVccwfNcKE7FAwaDljrTOK k7DUJdRtvSgsRyZ+uNt6/1xPj4aNwJ1zg3Cs6tMrZr09tlVHZyBVKTsZUz2piDcb3/ sa/Zb6veilsEPsnUICvdmQ2g8o9ix5K6cpgV8G4EhfdkSZFSs+3rjPrJM/Jsw+wE2S dsSrKeNQqoYiw== X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.20 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, 30 Dec 2015 21:06:27 -0000 These were broken by b70386a4 (Move the generated date from the top of the page to the footer, 2014-05-31), which moved 'Generated ...' to the footer with the opening tag, but didn't replace the blurb opening tag or add a closing tag after 'Generated ...'. --- devel/nmbug/nmbug-status | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devel/nmbug/nmbug-status b/devel/nmbug/nmbug-status index 8fd736c..f33f660 100755 --- a/devel/nmbug/nmbug-status +++ b/devel/nmbug/nmbug-status @@ -368,6 +368,7 @@ header_template = config['meta'].get('header', '''

{title}

+

{blurb}

Views

@@ -375,7 +376,7 @@ header_template = config['meta'].get('header', ''' footer_template = config['meta'].get('footer', '''
-

Generated: {datetime} +

Generated: {datetime}

''') -- 2.1.0.60.g85f0837