From e9406697c46545b1d9fd2b27921cacad18711487 Mon Sep 17 00:00:00 2001 From: "martin@piware.de" <> Date: Thu, 26 Nov 2009 08:33:24 +0100 Subject: [PATCH] workitems: fix https wiki link presentation --- workitems.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.39.2