diff options
| author | 2020-03-26 17:35:14 +1000 | |
|---|---|---|
| committer | 2020-03-26 17:35:14 +1000 | |
| commit | d645525839f53ab7f43846f5c1f63fa9b1d8fe4f (patch) | |
| tree | 4ce6ec6383458db84b53771fd284f8200e75f272 /bot/constants.py | |
| parent | Merge pull request #378 from python-discord/update-contrib (diff) | |
| parent | Setup Sentry (diff) | |
Merge pull request #383 from python-discord/setup-sentry
Setup Sentry
Diffstat (limited to '')
| -rw-r--r-- | bot/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 26cc9715..051bd62a 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -66,6 +66,7 @@ class Client(NamedTuple): guild = int(environ.get("SEASONALBOT_GUILD", 267624335836053506)) prefix = environ.get("PREFIX", ".") token = environ.get("SEASONALBOT_TOKEN") + sentry_dsn = environ.get("SEASONALBOT_SENTRY_DSN") debug = environ.get("SEASONALBOT_DEBUG", "").lower() == "true" season_override = environ.get("SEASON_OVERRIDE") icon_cycle_frequency = 3 # N days to wait between cycling server icons within a single season |