summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-12-01 23:55:27 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-12-01 23:55:27 -0500
commita10b6d884f4f102f5216f4b341f35bb341cee176 (patch)
treeffccc25f11663b33dd53dc936322d91bc5cb85b1 /settings.py
parent623e0453cee5e3f663a0b18d68db0396cc812983 (diff)
Normalize the URI scheme used for inbound links. Don't use one when possible, else use https
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.py b/settings.py
index e1fc45d5..ed12bbec 100644
--- a/settings.py
+++ b/settings.py
@@ -132,6 +132,6 @@ if DEBUG_TOOLBAR:
INSTALLED_APPS = list(INSTALLED_APPS) + [ 'debug_toolbar' ]
# URL to fetch a current list of available ISOs
-ISO_LIST_URL = 'http://repo.parabolagnulinux.org/isos/'
+ISO_LIST_URL = 'https://repo.parabolagnulinux.org/isos/'
# vim: set ts=4 sw=4 et: