diff options
author | 2021-12-02 00:11:16 +0000 | |
---|---|---|
committer | 2021-12-02 00:11:16 +0000 | |
commit | ebd90f95fca95035ac8c15c3a8e10e08ddad2413 (patch) | |
tree | 3b9ea9005a2e7a08f4d85857512dc56f4f21f957 /bot/constants.py | |
parent | Remove unnecessary edits during pagination (diff) | |
parent | Merge pull request #959 from onerandomusername/fix-hanukkah-command (diff) |
Merge branch 'main' into patch-3
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 2b41b8a4..33bc8b61 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -135,6 +135,7 @@ class Client(NamedTuple): prefix = environ.get("PREFIX", ".") token = environ.get("BOT_TOKEN") debug = environ.get("BOT_DEBUG", "true").lower() == "true" + file_logs = environ.get("FILE_LOGS", "false").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 |