aboutsummaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorW. Trevor King <wking@tremily.us>2015-12-30 13:04:13 -0800
committerDavid Bremner <david@tethera.net>2016-01-13 10:29:14 -0400
commitd6204e83620a8217fc97de29947341bbbc772664 (patch)
tree0a15333ac1d806deab7f37ab0b1cbf277bd2131d /devel
parent8fc32dd42e17085f3d1a602d0ba955d9a91ddd8b (diff)
nmbug-status: Fix unbalanced <p> 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 ...'.
Diffstat (limited to 'devel')
-rwxr-xr-xdevel/nmbug/nmbug-status3
1 files changed, 2 insertions, 1 deletions
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', '''<!DOCTYPE html>
</head>
<body>
<h1>{title}</h1>
+<p>
{blurb}
</p>
<h2>Views</h2>
@@ -384,7 +385,7 @@ header_template = config['meta'].get('header', '''<!DOCTYPE html>
footer_template = config['meta'].get('footer', '''
<hr>
-<p>Generated: {datetime}
+<p>Generated: {datetime}</p>
</body>
</html>
''')