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/halloween/halloween_facts.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/halloween/halloween_facts.py')
| -rw-r--r-- | bot/seasons/halloween/halloween_facts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/halloween/halloween_facts.py b/bot/seasons/halloween/halloween_facts.py index ee90dbd3..ad9aa716 100644 --- a/bot/seasons/halloween/halloween_facts.py +++ b/bot/seasons/halloween/halloween_facts.py @@ -7,7 +7,7 @@ from pathlib import Path import discord from discord.ext import commands -from bot.constants import Hacktoberfest +from bot.constants import Channels log = logging.getLogger(__name__) @@ -40,7 +40,7 @@ class HalloweenFacts(commands.Cog): async def on_ready(self): """Get event Channel object and initialize fact task loop.""" - self.channel = self.bot.get_channel(Hacktoberfest.channel_id) + self.channel = self.bot.get_channel(Channels.seasonalbot_chat) self.bot.loop.create_task(self._fact_publisher_task()) def random_fact(self): |