From 736c3dbb11991c36e33f51748288ce2bb6e48ebf Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Tue, 7 Nov 2023 10:28:30 +0800 Subject: [PATCH] fix: "(" is not closed Signed-off-by: Jack Cherng --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index 27b020c..365a5fb 100644 --- a/plugin.py +++ b/plugin.py @@ -252,7 +252,7 @@ def binary_from_python_path(path: str) -> Optional[str]: except PermissionError as e: print("{}: WARN: subprocess failed with permission error: {}".format(cls.name(), e)) except subprocess.CalledProcessError as e: - print("{}: WARN: subprocess failed: {}".format(cls.name(), str(e.output).strip()) + print("{}: WARN: subprocess failed: {}".format(cls.name(), str(e.output).strip())) # virtual environment as subfolder in project for file in os.listdir(workspace_folder):