about summary refs log tree commit diff stats
path: root/cogs/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'cogs/utils.py')
-rw-r--r--cogs/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cogs/utils.py b/cogs/utils.py
index c06049b..4657ad2 100644
--- a/cogs/utils.py
+++ b/cogs/utils.py
@@ -1,5 +1,5 @@
-import discord
-from discord.ext import commands
+import nextcord
+from nextcord.ext import commands
 
 class Utils(commands.Cog):
     def __init__(self, bot):
@@ -7,7 +7,7 @@ class Utils(commands.Cog):
 
     @commands.command(name="about", brief="Gives information about the bot.", help="Gives information about the bot.")
     async def about(self, ctx):
-        embed = discord.Embed(title="Tiny Potato Bot",
+        embed = nextcord.Embed(title="Tiny Potato Bot",
                               description="The creator of Tiny Potato Bot is mounderfod (aka redcreeper14385), find him here:",
                               color=0xa37dca)
         embed.add_field(name="GitHub", value="https://github.com/redcreeper14385", inline=False)