8000 [unicode.py] use secure protocols · unicode-rs/unicode-segmentation@8a23a6e · GitHub
[go: up one dir, main page]

Skip to content

Commit 8a23a6e

Browse files
committed
[unicode.py] use secure protocols
1 parent 269e0f9 commit 8a23a6e

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
@@ -64,10 +64,10 @@ def is_surrogate(n):
6464
def fetch(f):
6565
if not os.path.exists(os.path.basename(f)):
6666
if "emoji" in f:
67-
os.system("curl -O http://www.unicode.org/Public/%s/ucd/emoji/%s"
67+
os.system("curl -O https://www.unicode.org/Public/%s/ucd/emoji/%s"
6868
% (UNICODE_VERSION_NUMBER, f))
6969
else:
70-
os.system("curl -O http://www.unicode.org/Public/%s/ucd/%s"
70+
os.system("curl -O https://www.unicode.org/Public/%s/ucd/%s"
7171
% (UNICODE_VERSION_NUMBER, f))
7272

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

0 commit comments

Comments
 (0)
0