diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-12-04 22:03:03 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-12-04 22:03:03 -0500 |
commit | 48e53e5a91f43ac1ee4ec443f65a31af5c607797 (patch) | |
tree | 70aa389f1efae27b05ee814a456a16af4b581596 | |
parent | dcd9c6709a67a90b7a0d3c2772b6436212966213 (diff) |
strip https: from another URL
-rw-r--r-- | packages/templatetags/package_extras.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/templatetags/package_extras.py b/packages/templatetags/package_extras.py index 66fb5e7c..a2f2387e 100644 --- a/packages/templatetags/package_extras.py +++ b/packages/templatetags/package_extras.py @@ -123,7 +123,7 @@ def bug_report(package): @register.simple_tag def flag_unfree(package): - url = "https://bugs.parabolagnulinux.org/bugs/issue" + url = "//bugs.parabolagnulinux.org/bugs/issue" data = { '@template': 'item', 'keyword': 'packages,unfree', |