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 f78e316

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

File tree

Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed

‎winpython/associate.py

Copy file name to clipboardExpand all lines: winpython/associate.py
+4-4Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.