diff options
author | 2021-11-14 16:55:34 +0100 | |
---|---|---|
committer | 2021-11-14 16:55:34 +0100 | |
commit | 8c2da5a0f80af4458a36cb3977d449c0cc5e039f (patch) | |
tree | e931381b6551e6e6309c21f816b9f694cf24ecd6 /bot/constants.py | |
parent | Resources: add copyright notice to ryanzec_colours.json (diff) | |
parent | Merge pull request #943 from python-discord/file-log-debug (diff) |
Merge branch 'main' into color-677
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/constants.py b/bot/constants.py index 0720dd20..2b41b8a4 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -134,11 +134,11 @@ class Client(NamedTuple): guild = int(environ.get("BOT_GUILD", 267624335836053506)) prefix = environ.get("PREFIX", ".") token = environ.get("BOT_TOKEN") - sentry_dsn = environ.get("BOT_SENTRY_DSN") debug = environ.get("BOT_DEBUG", "true").lower() == "true" github_bot_repo = "https://github.com/python-discord/sir-lancebot" # Override seasonal locks: 1 (January) to 12 (December) month_override = int(environ["MONTH_OVERRIDE"]) if "MONTH_OVERRIDE" in environ else None + trace_loggers = environ.get("BOT_TRACE_LOGGERS") class Colours: @@ -347,8 +347,6 @@ WHITELISTED_CHANNELS = ( Channels.voice_chat_1, ) -GIT_SHA = environ.get("GIT_SHA", "foobar") - # Bot replies ERROR_REPLIES = [ "Please don't do that.", |