aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2015-04-30 19:10:13 +0200
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>2015-06-01 09:00:11 -0700
commit5bcd9ec2f8ad3cda6aaddc0268bc807145465eb5 (patch)
treed76e5f2928e8d5623aa643ae329c4cac5b3371b1
parent2e1824ceb509fd8787751f3b7874d32cc907c264 (diff)
downloadrel-html-5bcd9ec2f8ad3cda6aaddc0268bc807145465eb5.tar.gz
rel-html: fix url for next signature.
The link to the signature of the next tarball was missing a slash. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
-rwxr-xr-xrel-html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rel-html.py b/rel-html.py
index 0a48ea0..7977b4c 100755
--- a/rel-html.py
+++ b/rel-html.py
@@ -1185,7 +1185,7 @@ class rel_html_gen(HTMLParser):
(r.get('url'), r.get('rel')))
if (not r.get('ignore_signature')):
sys.stdout.write('\t\t\t\t<td><a href="%s">signed</a></td>\n' %
- (r.get('base_url') + r.get('signed_tarball')))
+ (r.get('base_url') + '/' + r.get('signed_tarball')))
else:
sys.stdout.write('\t\t\t\t<td></td>\n')
if (r.get('maintained')):