summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-09-22 23:24:00 -0500
committerDan McGee <dan@archlinux.org>2010-09-22 23:24:00 -0500
commitd0170b7fc90e31bd75c97d5c55de7b5dec29cf53 (patch)
treee9567befd6a4b45c461b1eedef6eef17e861b020 /main
parent47c95a2821d1fb926446d2379d4b2273af5482dc (diff)
downloadarchweb-d0170b7fc90e31bd75c97d5c55de7b5dec29cf53.tar.gz
archweb-d0170b7fc90e31bd75c97d5c55de7b5dec29cf53.zip
Update BBS and bugs links to use HTTPS
Since we only do HTTPS now on these services, no point in sending someone through a useless redirect. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main')
-rw-r--r--main/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py
index e5b270e5..a377187b 100644
--- a/main/models.py
+++ b/main/models.py
@@ -238,7 +238,7 @@ class Package(models.Model):
return self.get_svn_link("trunk")
def get_bugs_link(self):
- return "http://bugs.archlinux.org/?project=%d&string=%s" % \
+ return "https://bugs.archlinux.org/?project=%d&string=%s" % \
(self.repo.bugs_project, self.pkgname)
def is_same_version(self, other):