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 6bf5fd7

Browse filesBrowse files
authored
Merge pull request #1636 from stonebig/master
bug fix after changing markdown generation
2 parents b60b63b + 42f8e52 commit 6bf5fd7
Copy full SHA for 6bf5fd7

File tree

Expand file treeCollapse file tree

1 file changed

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

1 file changed

+3
-3
lines changed

‎winpython/utils.py

Copy file name to clipboardExpand all lines: winpython/utils.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ def get_installed_tools(path=None)-> str:
4747
tool_lines.append(("Python" ,f"http://www.python.org/", version, "Python programming language with standard library"))
4848
if (node_exe := python_exe.parent.parent / "n" / "node.exe").exists():
4949
version = exec_shell_cmd(f'powershell (Get-Item {node_exe}).VersionInfo.FileVersion', node_exe.parent).splitlines()[0]
50-
tool_lines.append("Nodejs", "https://nodejs.org", version, "a JavaScript runtime built on Chrome's V8 JavaScript engine")
50+
tool_lines.append(("Nodejs", "https://nodejs.org", version, "a JavaScript runtime built on Chrome's V8 JavaScript engine"))
5151

5252
if (pandoc_exe := python_exe.parent.parent / "t" / "pandoc.exe").exists():
5353
version = exec_shell_cmd("pandoc -v", pandoc_exe.parent).splitlines()[0].split(" ")[-1]
54-
tool_lines.append("Pandoc", "https://pandoc.org", version, "an universal document converter")
54+
tool_lines.append(("Pandoc", "https://pandoc.org", version, "an universal document converter"))
5555

5656
if (vscode_exe := python_exe.parent.parent / "t" / "VSCode" / "Code.exe").exists():
5757
version = exec_shell_cmd(f'powershell (Get-Item {vscode_exe}).VersionInfo.FileVersion', vscode_exe.parent).splitlines()[0]
58-
tool_lines.append("VSCode","https://code.visualstudio.com", version, "a source-code editor developed by Microsoft")
58+
tool_lines.append(("VSCode","https://code.visualstudio.com", version, "a source-code editor developed by Microsoft"))
5959
return tool_lines
6060

6161
def onerror(function, path, excinfo):

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.