Skip to content

Commit 902102b

Browse files
committed
fix: fallback to the other pyls if one doesn't exist
1 parent 8e29121 commit 902102b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/main.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ class PythonLanguageClient extends AutoLanguageClient {
5050
let pyls = atom.config.get("ide-python.pyls") || "pylsp"
5151
// check if it exists
5252
if (whichSync(pyls, { nothrow: true }) === null) {
53-
pyls = "pyls"
53+
// use the other one if it doesn't exist
54+
pyls = pyls === "pylsp" ? "pyls" : "pylsp"
5455
}
5556
// cache
5657
this.pyls = pyls

0 commit comments

Comments
 (0)