Skip to content

Commit bc31c73

Browse files
[3.12] gh-126525: Fix makeunicodedata.py output on macOS and Windows (GH-126526) (#126726)
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 41873c8 commit bc31c73

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)