diff options
author | 2021-11-12 07:48:51 +0100 | |
---|---|---|
committer | 2021-11-12 07:48:51 +0100 | |
commit | ec5eaadaae3e92f742f49085f782be40195a891c (patch) | |
tree | d7406eed339a63be27024c410b16d54987056007 /bot/constants.py | |
parent | Merge pull request #858 from Numerlor/coloredlogs (diff) | |
parent | Move Sentry Into Init (diff) |
Merge pull request #943 from python-discord/file-log-debug
Fix Startup Crash Loop
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bot/constants.py b/bot/constants.py index 9d12000e..2b41b8a4 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -134,7 +134,6 @@ 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) @@ -348,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.", |