You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -81,8 +81,8 @@ class PythonLanguageClient extends AutoLanguageClient {
81
81
onSpawnError(err){
82
82
constdescription=
83
83
err.code=="ENOENT"
84
-
? `No Python interpreter found at \`${python}\`.`
85
-
: `Could not spawn the Python interpreter \`${python}\`.`
84
+
? `No Python interpreter found at \`${this.python}\`.`
85
+
: `Could not spawn the Python interpreter \`${this.python}\`.`
86
86
atom.notifications.addError("`ide-python` could not launch your Python runtime.",{
87
87
dismissable: true,
88
88
description: `${description}<p>If you have Python installed please set "Python Executable" setting correctly. If you do not please install Python.</p>`,
@@ -106,8 +106,8 @@ class PythonLanguageClient extends AutoLanguageClient {
106
106
description:
107
107
"Make sure to install `pylsp` 0.19 or newer by running:\n"+
0 commit comments