Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f42826a commit 7f7b26eCopy full SHA for 7f7b26e
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