diff options
| author | 2019-03-25 22:41:34 -0600 | |
|---|---|---|
| committer | 2019-03-25 22:41:34 -0600 | |
| commit | c971c2822dce39abde76acffbded7bc03a58ba50 (patch) | |
| tree | fc3e6484b77907bc0158c271af26261d013ae508 /bot/seasons/evergreen/fun.py | |
| parent | Merge pull request #155 from python-discord/ci-cleanup (diff) | |
| parent | Remove 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.py | 4 | 
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")  |