@@ -47,15 +47,15 @@ def get_installed_tools(path=None)-> str:
47
47
tool_lines .append (("Python" ,f"http://www.python.org/" , version , "Python programming language with standard library" ))
48
48
if (node_exe := python_exe .parent .parent / "n" / "node.exe" ).exists ():
49
49
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" ) )
51
51
52
52
if (pandoc_exe := python_exe .parent .parent / "t" / "pandoc.exe" ).exists ():
53
53
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" ) )
55
55
56
56
if (vscode_exe := python_exe .parent .parent / "t" / "VSCode" / "Code.exe" ).exists ():
57
57
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" ) )
59
59
return tool_lines
60
60
61
61
def onerror (function , path , excinfo ):
0 commit comments