Skip to content

Commit

Permalink
Fix extra newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
nicovank committed Jan 10, 2024
1 parent 2b00b5d commit 61825d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cwhy/cwhy.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ def main(args):
print("==================================================")
sys.exit(0)

print(process.stdout)
print(process.stderr, file=sys.stderr)
print(process.stdout, end="")
print(process.stderr, file=sys.stderr, end="")
if "CWHY_DISABLE" not in os.environ:
print("==================================================")
print("CWhy")
Expand Down

0 comments on commit 61825d2

Please sign in to comment.