From: martin@piware.de <> Date: Thu, 26 Nov 2009 07:33:24 +0000 (+0100) Subject: workitems: fix https wiki link presentation X-Git-Url: https://piware.de/gitweb/?p=bin.git;a=commitdiff_plain;h=e9406697c46545b1d9fd2b27921cacad18711487 workitems: fix https wiki link presentation --- diff --git a/workitems.py b/workitems.py index 6e5777d..e90b09d 100755 --- a/workitems.py +++ b/workitems.py @@ -437,7 +437,7 @@ def html(db): completion.sort(key=lambda k: k[1], reverse=True) for (bp, percent) in completion: - if bp.startswith('http:'): + if bp.startswith('http:') or bp.startswith('https:'): url = bp else: url = '%s/ubuntu/+spec/%s' % (blueprints_base_url, escape(bp))