aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/evergreen/fun.py
diff options
context:
space:
mode:
authorGravatar Chris Goes <[email protected]>2019-03-25 22:41:34 -0600
committerGravatar GitHub <[email protected]>2019-03-25 22:41:34 -0600
commitc971c2822dce39abde76acffbded7bc03a58ba50 (patch)
treefc3e6484b77907bc0158c271af26261d013ae508 /bot/seasons/evergreen/fun.py
parentMerge pull request #155 from python-discord/ci-cleanup (diff)
parentRemove unneeded fstring prefix. (diff)
Merge pull request #132 from python-discord/dpy-cog-changes
Add new Cog class inheritance & event listener decoration
Diffstat (limited to 'bot/seasons/evergreen/fun.py')
-rw-r--r--bot/seasons/evergreen/fun.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/evergreen/fun.py b/bot/seasons/evergreen/fun.py
index 4da01dd1..9ef47331 100644
--- a/bot/seasons/evergreen/fun.py
+++ b/bot/seasons/evergreen/fun.py
@@ -8,7 +8,7 @@ from bot.constants import Emojis
log = logging.getLogger(__name__)
-class Fun:
+class Fun(commands.Cog):
"""
A collection of general commands for fun.
"""
@@ -35,4 +35,4 @@ class Fun:
# Required in order to load the cog, use the class name in the add_cog function.
def setup(bot):
bot.add_cog(Fun(bot))
- log.debug("Fun cog loaded")
+ log.info("Fun cog loaded")