From f942852813f813c9c67d6a71290806bcb8a8e522 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Fri, 12 Jan 2018 15:48:19 -0600 Subject: [PATCH] Send as an actual embed object --- cogs/tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/tutorial.py b/cogs/tutorial.py index 4aaa0a3..75d3e05 100644 --- a/cogs/tutorial.py +++ b/cogs/tutorial.py @@ -38,7 +38,7 @@ class Tutorial: # Loop through all the commands that we want to use for command in commands: embed = self.generate_embed(command) - await ctx.author.send(embed) + await ctx.author.send(embed=embed) return def generate_embed(self, command):