We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f42826a + 7f7b26e commit 1a8846eCopy full SHA for 1a8846e
scripts/unicode.py
@@ -46,7 +46,7 @@
46
# Download a Unicode security table file
47
def fetch(f):
48
if not os.path.exists(os.path.basename(f)):
49
- os.system("curl -O http://www.unicode.org/Public/security/%s/%s"
+ os.system("curl -O https://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
def fetch_unidata(f):
58
59
- os.system("curl -O http://www.unicode.org/Public/%s/ucd/%s"
+ os.system("curl -O https://www.unicode.org/Public/%s/ucd/%s"
60
61
62
0 commit comments