diff options
Diffstat (limited to 'bot/seasons/halloween/spookygif.py')
| -rw-r--r-- | bot/seasons/halloween/spookygif.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/halloween/spookygif.py b/bot/seasons/halloween/spookygif.py index 1233773b..054f9b12 100644 --- a/bot/seasons/halloween/spookygif.py +++ b/bot/seasons/halloween/spookygif.py @@ -9,7 +9,7 @@ from bot.constants import Tokens  log = logging.getLogger(__name__) -class SpookyGif: +class SpookyGif(commands.Cog):      """      A cog to fetch a random spooky gif from the web!      """ @@ -40,4 +40,4 @@ class SpookyGif:  def setup(bot):      bot.add_cog(SpookyGif(bot)) -    log.debug("SpookyGif cog loaded") +    log.info("Spooky gif cog loaded")  |