diff options
author | 2020-09-22 18:43:36 +0200 | |
---|---|---|
committer | 2020-09-22 18:43:36 +0200 | |
commit | b94e4613a4e9e10eb8126f4c67c9ed73d1ecc32f (patch) | |
tree | c5d37f3f2053b791d680f806b299c8cb5e665efa /bot | |
parent | Fix extensions command bot avatar url (diff) |
Fix GitHub repo link constant
- Previous version was pointing to Python, not SeasonalBot
Co-authored-by: Dennis Pham <[email protected]>
Diffstat (limited to 'bot')
-rw-r--r-- | bot/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index c69d5a83..2d6bfa1b 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -85,7 +85,7 @@ class Client(NamedTuple): token = environ.get("SEASONALBOT_TOKEN") sentry_dsn = environ.get("SEASONALBOT_SENTRY_DSN") debug = environ.get("SEASONALBOT_DEBUG", "").lower() == "true" - github_bot_repo = "https://github.com/python-discord/bot" + github_bot_repo = "https://github.com/python-discord/seasonalbot" # Override seasonal locks: 1 (January) to 12 (December) month_override = int(environ["MONTH_OVERRIDE"]) if "MONTH_OVERRIDE" in environ else None |