Skip to content

Commit 57ce526

Browse files
committed
check_call -> run
1 parent 8c929be commit 57ce526

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/generate_flamegraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def main():
4949
bash_command.insert(6, "--native")
5050

5151
try:
52-
subprocess.check_call(bash_command) # noqa: S603
52+
subprocess.run(bash_command, check=True) # noqa: S603
5353
except Exception:
5454
sys.exit(1)
5555

0 commit comments

Comments
 (0)