Skip to content

Commit f78e316

Browse files
authored
Merge pull request winpython#1577 from stonebig/master
a bug at rc
2 parents 8a12b00 + 3ee9c36 commit f78e316

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

winpython/associate.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ def register_in_registery(target, current=True, reg_type=winreg.REG_SZ, verbose=
9292
python_exe = str(target_path / "python.exe")
9393
pythonw_exe = str(target_path / "pythonw.exe")
9494
spyder_exe = str(target_path.parent / "Spyder.exe")
95-
icon_py = str(target / "DLLs" / "py.ico")
96-
icon_pyc = str(target / "DLLs" / "pyc.ico")
97-
idle_path = str(target / "Lib" / "idlelib" / "idle.pyw")
98-
doc_path = str(target / "Doc" / "html" / "index.html")
95+
icon_py = str(target_path / "DLLs" / "py.ico")
96+
icon_pyc = str(target_path / "DLLs" / "pyc.ico")
97+
idle_path = str(target_path / "Lib" / "idlelib" / "idle.pyw")
98+
doc_path = str(target_path / "Doc" / "html" / "index.html")
9999
python_infos = utils.get_python_infos(target) # ('3.11', 64)
100100
short_version = python_infos[0] # e.g., '3.11'
101101
version = utils.get_python_long_version(target) # e.g., '3.11.5'

0 commit comments

Comments
 (0)