Skip to content

Commit

Permalink
Fix atexit message (#2044)
Browse files Browse the repository at this point in the history
  • Loading branch information
sentrivana authored Apr 28, 2023
1 parent bc209e5 commit 16f14ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry_sdk/integrations/atexit.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def echo(msg):
# type: (str) -> None
sys.stderr.write(msg + "\n")

echo("Sentry is attempting to send %i pending error messages" % pending)
echo("Sentry is attempting to send %i pending events" % pending)
echo("Waiting up to %s seconds" % timeout)
echo("Press Ctrl-%s to quit" % (os.name == "nt" and "Break" or "C"))
sys.stderr.flush()
Expand Down

0 comments on commit 16f14ec

Please sign in to comment.