aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar Xithrius <[email protected]>2021-08-30 02:10:34 -0700
committerGravatar GitHub <[email protected]>2021-08-30 02:10:34 -0700
commit902f5da34ff05c42400ab2a286a029147ff3756e (patch)
treeccf37fcdcbe146eeb82c02d5c4ce95d09b55ee33 /bot/constants.py
parentImplement requested changes to CoinSide converter (diff)
parentMerge pull request #820 from python-discord/escape-reddit-posts (diff)
Merge branch 'main' into coinflip-command
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py
index b5097601..2730106b 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -134,7 +134,7 @@ class Client(NamedTuple):
prefix = environ.get("PREFIX", ".")
token = environ.get("BOT_TOKEN")
sentry_dsn = environ.get("BOT_SENTRY_DSN")
- debug = environ.get("BOT_DEBUG", "").lower() == "true"
+ 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