diff options
| author | 2019-03-27 21:09:23 +0530 | |
|---|---|---|
| committer | 2019-03-27 21:09:23 +0530 | |
| commit | 463e7f9d757ce8142f23f67f55f3c41d4336ba56 (patch) | |
| tree | fc3e6484b77907bc0158c271af26261d013ae508 /bot/seasons/halloween/monstersurvey.py | |
| parent | Merge pull request #99 from python-discord/config-update (diff) | |
| parent | Merge pull request #132 from python-discord/dpy-cog-changes (diff) | |
Merge pull request #1 from python-discord/master
syncing fork
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")  |