From e2c7dc97d64cca48cb7f832b953ebef41ccb18b4 Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Sat, 2 Jul 2016 13:20:40 +0200 Subject: [PATCH] Use https for links in excuses.html Signed-off-by: Julien Cristau --- britney.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/britney.py b/britney.py index 021438f..e62219a 100755 --- a/britney.py +++ b/britney.py @@ -1528,16 +1528,16 @@ class Britney(object): excuse.setbugs(old_bugs, new_bugs) if new_bugs: - excuse.addhtml("%s has new bugs!" % (src, quote(src))) excuse.addhtml("Updating %s introduces new bugs: %s" % (src, ", ".join( - ["#%s" % (quote(a), a) for a in new_bugs]))) + ["#%s" % (quote(a), a) for a in new_bugs]))) update_candidate = False if old_bugs: excuse.addhtml("Updating %s fixes old bugs: %s" % (src, ", ".join( - ["#%s" % (quote(a), a) for a in old_bugs]))) + ["#%s" % (quote(a), a) for a in old_bugs]))) if new_bugs and len(old_bugs) > len(new_bugs): excuse.addhtml("%s introduces new bugs, so still ignored (even " "though it fixes more than it introduces, whine at debian-release)" % src) @@ -1567,7 +1567,7 @@ class Britney(object): base = 'testing' else: base = 'stable' - text = "Not yet built on %s (relative to testing)" % (quote(arch), quote(src), quote(source_u[VERSION]), base, arch) + text = "Not yet built on %s (relative to testing)" % (quote(arch), quote(src), quote(source_u[VERSION]), base, arch) if arch in self.options.fucked_arches: text = text + " (but %s isn't keeping up, so never mind)" % (arch) @@ -1623,15 +1623,15 @@ class Britney(object): oodtxt = "" for v in oodbins.keys(): if oodtxt: oodtxt = oodtxt + "; " - oodtxt = oodtxt + "%s (from %s)" % \ (", ".join(sorted(oodbins[v])), quote(arch), quote(src), quote(v), v) if uptodatebins: - text = "old binaries left on %s: %s" % \ (quote(arch), quote(src), quote(source_u[VERSION]), arch, oodtxt) else: - text = "missing build on %s: %s" % \ (quote(arch), quote(src), quote(source_u[VERSION]), arch, oodtxt)