summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Jones <richard@mechanicalcat.net>2013-02-04 12:15:08 +1100
committerRichard Jones <richard@mechanicalcat.net>2013-02-04 12:15:08 +1100
commitd4971bc83218e07461df321f49b3cd0b7cfde68e (patch)
tree120136caa5215506a75b40a2c9b6faf2420ee170
parentb6161146be1a7b13df769dd2cc199c15f6da191b (diff)
downloaddecorator-d4971bc83218e07461df321f49b3cd0b7cfde68e.tar.gz
generate HTTPS download links too
-rw-r--r--config.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.py b/config.py
index 43fa8ee..7f9356a 100644
--- a/config.py
+++ b/config.py
@@ -57,8 +57,10 @@ class Config:
if self.url.startswith("http:"):
self.url = "https"+self.url[4:]
self.pydotorg = '/'
+ self.files_url = "https"+self.files_url[4:]
def make_http(self):
if self.url.startswith("https:"):
self.url = "http"+self.url[5:]
self.pydotorg = self.orig_pydotorg
+ self.files_url = "http"+self.files_url[5:]