summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-08-17 23:59:20 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-08-18 00:01:33 +0200
commit3a8390be36176862b1a79cad2a6364df75bde7a7 (patch)
treee580f2352f734dd7bdf13075d2125b0e7cb9c38e /python
parent444576e2d12247a1ad5a9bfb81dc9b5d08ac946f (diff)
downloadpycurl-3a8390be36176862b1a79cad2a6364df75bde7a7.tar.gz
URLs: change from HTTP to HTTPS for curl.haxx.se
Diffstat (limited to 'python')
-rw-r--r--python/curl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/curl/__init__.py b/python/curl/__init__.py
index 315a383..fae8cd5 100644
--- a/python/curl/__init__.py
+++ b/python/curl/__init__.py
@@ -168,7 +168,7 @@ class Curl:
if __name__ == "__main__":
if len(sys.argv) < 2:
- url = 'http://curl.haxx.se'
+ url = 'https://curl.haxx.se'
else:
url = sys.argv[1]
c = Curl()