Skip to content

Commit

Permalink
fix: log stderr instead of err (#23)
Browse files Browse the repository at this point in the history
Signed-off-by: Akshit Garg <akshit@deepsource.io>

Signed-off-by: Akshit Garg <akshit@deepsource.io>
  • Loading branch information
akshit-deepsource authored Dec 15, 2022
1 parent 8b49725 commit c443580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def main() -> None:
sys.exit(1)

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


if __name__ == "__main__":
Expand Down

0 comments on commit c443580

Please sign in to comment.