diff options
author | Dan McGee <dan@archlinux.org> | 2010-09-22 23:24:00 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-09-22 23:24:00 -0500 |
commit | d0170b7fc90e31bd75c97d5c55de7b5dec29cf53 (patch) | |
tree | e9567befd6a4b45c461b1eedef6eef17e861b020 /main | |
parent | 47c95a2821d1fb926446d2379d4b2273af5482dc (diff) |
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.py | 2 |
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): |