diff options
Diffstat (limited to '')
-rw-r--r-- | bot.py | 2 | ||||
-rw-r--r-- | cogs/utils.py (renamed from cogs/util.py) | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -5,7 +5,7 @@ import aiohttp import logging extensions = [ - "cogs.moderator", "cogs.general", "cogs.welcome", "cogs.util" + "cogs.moderator", "cogs.general", "cogs.welcome", "cogs.utils" ] def get_prefix(bot, message): diff --git a/cogs/util.py b/cogs/utils.py index 3b87d0b..ac7ec95 100644 --- a/cogs/util.py +++ b/cogs/utils.py @@ -2,7 +2,7 @@ from discord.ext import commands import discord import asyncio -class Util(commands.Cog): +class Utils(commands.Cog): def __init__(self, bot): self.bot = bot @@ -11,5 +11,5 @@ class Util(commands.Cog): await ctx.send(f'Pong! {round(self.bot.latency*1000)}ms') def setup(bot): - bot.add_cog(Util(bot)) + bot.add_cog(Utils(bot)) |