From 8ad85bf12a178d8896a28f17f9bb838ed0a438dc Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 19 Mar 2017 21:45:50 -0400 Subject: [PATCH] typo --- httpbin/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpbin/core.py b/httpbin/core.py index 6f24474..ad7b5d5 100644 --- a/httpbin/core.py +++ b/httpbin/core.py @@ -55,7 +55,7 @@ app.debug = bool(os.environ.get('DEBUG')) # Send app errors to Sentry. if 'SENTRY_DSN' in os.environ: - sentry = Sentry(app, dsn=os.environ('SENTRY_DSN')) + sentry = Sentry(app, dsn=os.environ['SENTRY_DSN']) # Set up Bugsnag exception tracking, if desired. To use Bugsnag, install the