Skip to content

Commit 4c4e34b

Browse files
committed
use python they said, no more compiler errors they said
[ghstack-poisoned]
1 parent a4c8303 commit 4c4e34b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/print_exported_headers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def run(command: List[str]) -> str:
2424
"""Run subprocess and return its output."""
2525
try:
2626
result = subprocess.run(command, capture_output=True, check=True, cwd=BUCK_CWD)
27-
except CalledProcessError as ex:
27+
except subprocess.CalledProcessError as ex:
2828
print(f"Subprocess failed. stdout: {ex.stdout}\nstderr: {ex.stderr}")
2929
raise
3030
return result.stdout.decode()

0 commit comments

Comments
 (0)