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 3d01ffc commit ceeda47Copy full SHA for ceeda47
lang/python/lib.go
@@ -59,7 +59,7 @@ func CheckPythonVersion() error {
59
60
func InstallLanguageServer() (string, error) {
61
if out, err := exec.Command("pylsp", "--version").CombinedOutput(); err == nil {
62
- log.Info("pylsp already installed: %v", out)
+ log.Info("pylsp already installed: %v", string(out))
63
return lspName, nil
64
}
65
if err := CheckPythonVersion(); err != nil {
0 commit comments