diff options
author | 2020-12-12 00:37:55 +0100 | |
---|---|---|
committer | 2020-12-12 00:37:55 +0100 | |
commit | e2e4222ecc52a8743a3829454261ce549bd2408c (patch) | |
tree | 84e05105ec82135b07071f8b627041563bd149a8 /pydis_site/settings.py | |
parent | Update README to trigger redeploy. (diff) |
Change env var from SITE_SENTRY_DSN to SITE_DSN
The name of the environment variable was shortened during our
refactor of the Sentry secrets. Changed `settings.py` to reflect
that change.
Diffstat (limited to '')
-rw-r--r-- | pydis_site/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/settings.py b/pydis_site/settings.py index 204ce58f..2b1bfa58 100644 --- a/pydis_site/settings.py +++ b/pydis_site/settings.py @@ -28,7 +28,7 @@ if typing.TYPE_CHECKING: env = environ.Env( DEBUG=(bool, False), - SITE_SENTRY_DSN=(str, "") + SITE_DSN=(str, "") ) sentry_sdk.init( |