We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79261d8 commit fc10279Copy full SHA for fc10279
lib/find-python.js
@@ -86,12 +86,10 @@ class PythonFinder {
86
{
87
before: () => {
88
if (!this.configPython) {
89
- this.addLog(
90
- '--python= is not set from command line')
+ this.addLog('--python was not set on the command line')
91
return SKIP
92
}
93
- this.addLog('checking Python explicitly set from command line')
94
- this.addLog(`- "--python=${this.configPython}"`)
+ this.addLog(`--python=${this.configPython} was set on the command line`)
95
},
96
check: () => this.checkCommand(this.configPython)
97
0 commit comments