Skip to content

Commit 192c023

Browse files
committed
Fix atexit message
1 parent bc55cd3 commit 192c023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/integrations/atexit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def echo(msg):
2727
# type: (str) -> None
2828
sys.stderr.write(msg + "\n")
2929

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

0 commit comments

Comments
 (0)