Skip to content

Commit 7f7b26e

Browse files
authored
http -> https 2x in py script
1 parent f42826a commit 7f7b26e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/unicode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# Download a Unicode security table file
4747
def fetch(f):
4848
if not os.path.exists(os.path.basename(f)):
49-
os.system("curl -O http://www.unicode.org/Public/security/%s/%s"
49+
os.system("curl -O https://www.unicode.org/Public/security/%s/%s"
5050
% (UNICODE_VERSION_NUMBER, f))
5151

5252
if not os.path.exists(os.path.basename(f)):
@@ -56,7 +56,7 @@ def fetch(f):
5656
# Download a UCD table file
5757
def fetch_unidata(f):
5858
if not os.path.exists(os.path.basename(f)):
59-
os.system("curl -O http://www.unicode.org/Public/%s/ucd/%s"
59+
os.system("curl -O https://www.unicode.org/Public/%s/ucd/%s"
6060
% (UNICODE_VERSION_NUMBER, f))
6161

6262
if not os.path.exists(os.path.basename(f)):

0 commit comments

Comments
 (0)