Skip to content

Commit

Permalink
!squash manual fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Aug 20, 2023
1 parent 0f0a947 commit 7d024b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libvcs/_internal/subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,8 @@ def check_output(
output = subprocess.check_output(input=input, **params)
if isinstance(output, (bytes, str)):
return output
raise Exception(f"output is not str or bytes: {output}")

raise SubprocessCheckOutputError(output=output)

@overload
def run(
Expand Down

0 comments on commit 7d024b9

Please sign in to comment.