Skip to content

Commit ceeda47

Browse files
committed
fix: installation output
1 parent 3d01ffc commit ceeda47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lang/python/lib.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func CheckPythonVersion() error {
5959

6060
func InstallLanguageServer() (string, error) {
6161
if out, err := exec.Command("pylsp", "--version").CombinedOutput(); err == nil {
62-
log.Info("pylsp already installed: %v", out)
62+
log.Info("pylsp already installed: %v", string(out))
6363
return lspName, nil
6464
}
6565
if err := CheckPythonVersion(); err != nil {

0 commit comments

Comments
 (0)