From: W. Trevor King Date: Wed, 30 Dec 2015 21:04:13 +0000 (-0800) Subject: nmbug-status: Fix unbalanced

tags in default header/footer X-Git-Tag: 0.22_rc0~73 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=d6204e83620a8217fc97de29947341bbbc772664 nmbug-status: Fix unbalanced

tags in default header/footer 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 ...'. --- diff --git a/devel/nmbug/nmbug-status b/devel/nmbug/nmbug-status index cb8b984a..33ab626c 100755 --- a/devel/nmbug/nmbug-status +++ b/devel/nmbug/nmbug-status @@ -377,6 +377,7 @@ header_template = config['meta'].get('header', '''

{title}

+

{blurb}

Views

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

Generated: {datetime} +

Generated: {datetime}

''')