diff --git a/sentry_sdk/integrations/atexit.py b/sentry_sdk/integrations/atexit.py index 36d7025a1e..225f8e1e3f 100644 --- a/sentry_sdk/integrations/atexit.py +++ b/sentry_sdk/integrations/atexit.py @@ -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()