8000 a bug at rc · winpython/winpython@3ee9c36 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3ee9c36

Browse files
committed
a bug at rc
shall fix #1576 (for this rc at least)
1 parent 8a12b00 commit 3ee9c36

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)
0