Skip to content

Commit c443580

Browse files
fix: log stderr instead of err (#23)
Signed-off-by: Akshit Garg <[email protected]> Signed-off-by: Akshit Garg <[email protected]>
1 parent 8b49725 commit c443580

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def main() -> None:
5555
sys.exit(1)
5656

5757
print(process.stdout.decode("utf-8"))
58-
print(process.err.decode("utf-8"), file=sys.stderr)
58+
print(process.stderr.decode("utf-8"), file=sys.stderr)
5959

6060

6161
if __name__ == "__main__":

0 commit comments

Comments
 (0)