Skip to content

Commit 6cefffc

Browse files
[3.13] gh-126525: Fix makeunicodedata.py output on macOS and Windows (GH-126526) (#126725)
gh-126525: Fix `makeunicodedata.py` output on macOS and Windows (GH-126526) (cherry picked from commit f223efb) Co-authored-by: sobolevn <[email protected]>
1 parent e5e70c5 commit 6cefffc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/unicode/makeunicodedata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from textwrap import dedent
3636
from typing import Iterator, List, Optional, Set, Tuple
3737

38-
SCRIPT = sys.argv[0]
38+
SCRIPT = os.path.normpath(sys.argv[0])
3939
VERSION = "3.3"
4040

4141
# The Unicode Database

0 commit comments

Comments
 (0)