diff options
author | 2020-03-28 15:59:40 +0100 | |
---|---|---|
committer | 2020-03-28 15:59:40 +0100 | |
commit | adeacd6beeca90968dfc5cbce007034b7f54bf66 (patch) | |
tree | d4598667d9799f3bc97fa9e2660d4bd9b00d22e3 /bot/constants.py | |
parent | Deseasonify: make `get_extensions` an iterator (diff) | |
parent | Merge pull request #383 from python-discord/setup-sentry (diff) |
Merge master: sentry sdk, updated contributing docs
Diffstat (limited to 'bot/constants.py')
-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 68e2b33f..1a2763f0 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -80,6 +80,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" |