From 7e312c421ee1ccd57a6f1a5c43a00e8e4ec6a7d9 Mon Sep 17 00:00:00 2001 From: sblondon Date: Mon, 28 Sep 2020 16:21:13 +0200 Subject: [PATCH] aesthetic: add a space after a comma (#3771) --- docs/errorhandling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/errorhandling.rst b/docs/errorhandling.rst index feeb4a6e..a20f1d73 100644 --- a/docs/errorhandling.rst +++ b/docs/errorhandling.rst @@ -55,7 +55,7 @@ And then add this to your Flask app: import sentry_sdk from sentry_sdk.integrations.flask import FlaskIntegration - sentry_sdk.init('YOUR_DSN_HERE',integrations=[FlaskIntegration()]) + sentry_sdk.init('YOUR_DSN_HERE', integrations=[FlaskIntegration()]) The ``YOUR_DSN_HERE`` value needs to be replaced with the DSN value you get from your Sentry installation.