Skip to content

Commit c443580

Browse files
fix: log stderr instead of err (#23)
Signed-off-by: Akshit Garg <akshit@deepsource.io> Signed-off-by: Akshit Garg <akshit@deepsource.io>
1 parent 8b49725 commit c443580

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)