Skip to content

Commit

Permalink
Fix common_util.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Whisonant authored Nov 7, 2023
1 parent 5c34f92 commit 170892b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pacsign/pacsign/common_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def run_command(command, printed_cmd=None, return_code=0, allow_error=False):
command = command.split()

try:
p = subprocess.run(cmd, check=True, capture_output=True, encoding='ascii')
p = subprocess.run(command, check=True, capture_output=True, encoding='ascii')
except subprocess.CalledProcessError:
assert allow_error, (
'Fail to run command "%s", error code %d =>\n%s'
Expand Down

0 comments on commit 170892b

Please sign in to comment.