We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentf42826a commit7f7b26eCopy full SHA for 7f7b26e
scripts/unicode.py
@@ -46,7 +46,7 @@
46
# Download a Unicode security table file
47
deffetch(f):
48
ifnotos.path.exists(os.path.basename(f)):
49
-os.system("curl -Ohttp://www.unicode.org/Public/security/%s/%s"
+os.system("curl -Ohttps://www.unicode.org/Public/security/%s/%s"
50
% (UNICODE_VERSION_NUMBER,f))
51
52
@@ -56,7 +56,7 @@ def fetch(f):
56
# Download a UCD table file
57
deffetch_unidata(f):
58
59
-os.system("curl -Ohttp://www.unicode.org/Public/%s/ucd/%s"
+os.system("curl -Ohttps://www.unicode.org/Public/%s/ucd/%s"
60
61
62