Skip to content

Commit 3bbca75

Browse files
committed
Fix double underscore
1 parent 0f956d4 commit 3bbca75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpython-windows/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@ def find_additional_dependencies(project: pathlib.Path):
10801080
elif arch == "win32":
10811081
abi_platform = "win32"
10821082
elif arch == "arm64":
1083-
abi_platform = "win__arm64"
1083+
abi_platform = "win_arm64"
10841084
else:
10851085
raise ValueError("unhandled arch: %s" % arch)
10861086

0 commit comments

Comments
 (0)