Skip to content

Commit

Permalink
add newline in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
denik committed Jan 20, 2025
1 parent a881332 commit 389073a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acceptance/bin/callserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
env = {}
for key, value in os.environ.items():
if len(value) > 1000:
sys.stderr.write(f"Dropping key={key} value len={len(value)}")
sys.stderr.write(f"Dropping key={key} value len={len(value)}\n")
continue
env[key] = value

Expand Down

0 comments on commit 389073a

Please sign in to comment.