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/valentines/be_my_valentine.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/valentines/be_my_valentine.py')
| -rw-r--r-- | bot/seasons/valentines/be_my_valentine.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/seasons/valentines/be_my_valentine.py b/bot/seasons/valentines/be_my_valentine.py index 5ff5857b..8340d7fa 100644 --- a/bot/seasons/valentines/be_my_valentine.py +++ b/bot/seasons/valentines/be_my_valentine.py @@ -8,7 +8,7 @@ import discord  from discord.ext import commands  from discord.ext.commands.cooldowns import BucketType -from bot.constants import Client, Colours, Lovefest +from bot.constants import Channels, Client, Colours, Lovefest  log = logging.getLogger(__name__) @@ -99,7 +99,7 @@ class BeMyValentine(commands.Cog):          emoji_1, emoji_2 = self.random_emoji()          lovefest_role = discord.utils.get(ctx.guild.roles, id=Lovefest.role_id) -        channel = self.bot.get_channel(Lovefest.channel_id) +        channel = self.bot.get_channel(Channels.seasonalbot_chat)          valentine, title = self.valentine_check(valentine_type)          if user is None: | 
