diff options
Diffstat (limited to 'bot/seasons/halloween/monstersurvey.py')
| -rw-r--r-- | bot/seasons/halloween/monstersurvey.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/seasons/halloween/monstersurvey.py b/bot/seasons/halloween/monstersurvey.py index 08873f24..2b251b90 100644 --- a/bot/seasons/halloween/monstersurvey.py +++ b/bot/seasons/halloween/monstersurvey.py @@ -4,7 +4,7 @@ import os  from discord import Embed  from discord.ext import commands -from discord.ext.commands import Bot, Context +from discord.ext.commands import Bot, Cog, Context  log = logging.getLogger(__name__) @@ -14,7 +14,7 @@ EMOJIS = {  } -class MonsterSurvey: +class MonsterSurvey(Cog):      """      Vote for your favorite monster!      This command allows users to vote for their favorite listed monster. @@ -215,4 +215,4 @@ class MonsterSurvey:  def setup(bot):      bot.add_cog(MonsterSurvey(bot)) -    log.debug("MonsterSurvey cog loaded") +    log.info("MonsterSurvey cog loaded")  |