Skip to content

Commit

Permalink
fix: "(" is not closed
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <[email protected]>
  • Loading branch information
jfcherng committed Nov 7, 2023
1 parent 5edd2ab commit 736c3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 736c3db

Please sign in to comment.