Skip to content

Commit a45fa6c

Browse files
committed
Fix missing format string
1 parent 97fb4f4 commit a45fa6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpython-windows/generate_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
).decode("ascii"),
2727
"python_paths": {},
2828
"python_paths_abstract": sysconfig.get_paths(expand=False),
29-
"python_exe": "install/{os.path.basename(sys.executable)}",
29+
"python_exe": f"install/{os.path.basename(sys.executable)}",
3030
"python_major_minor_version": sysconfig.get_python_version(),
3131
"python_config_vars": {k: str(v) for k, v in sysconfig.get_config_vars().items()},
3232
}

0 commit comments

Comments
 (0)