diff options
author | 2019-05-11 22:20:12 -0400 | |
---|---|---|
committer | 2019-05-11 22:20:12 -0400 | |
commit | f85ab4e4507481d0b5119b4e6722fb82e711c24e (patch) | |
tree | 528dbd0ac83a36350bb811bc35b9f573c16be6e0 /bot/seasons/christmas/adventofcode.py | |
parent | Fix broken avatar URL getter patterns (diff) | |
parent | Hanukkah embed (#164) (diff) |
Merge branch 'master' into pypi-dpy
Diffstat (limited to 'bot/seasons/christmas/adventofcode.py')
-rw-r--r-- | bot/seasons/christmas/adventofcode.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py index 075c5606..440484b4 100644 --- a/bot/seasons/christmas/adventofcode.py +++ b/bot/seasons/christmas/adventofcode.py @@ -13,7 +13,7 @@ from bs4 import BeautifulSoup from discord.ext import commands from pytz import timezone -from bot.constants import AdventOfCode as AocConfig, Colours, Emojis, Tokens +from bot.constants import AdventOfCode as AocConfig, Channels, Colours, Emojis, Tokens log = logging.getLogger(__name__) @@ -88,7 +88,7 @@ async def day_countdown(bot: commands.Bot): await asyncio.sleep(time_left.seconds) - channel = bot.get_channel(AocConfig.channel_id) + channel = bot.get_channel(Channels.seasonalbot_chat) if not channel: log.error("Could not find the AoC channel to send notification in") |