From 1079024f45c2fba5039899ba2ffa4ba2f7b5cb96 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 5 Mar 2023 00:11:32 -0500 Subject: [PATCH] added a missing await to [p]podcast --- podcast/podcast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podcast/podcast.py b/podcast/podcast.py index de5065d..f84240d 100644 --- a/podcast/podcast.py +++ b/podcast/podcast.py @@ -33,7 +33,7 @@ class Podcast(commands.Cog): else: return if ctx.author.id in blacklisted_users: - ctx.author.send(content=f"You are blacklisted from ``{prefix}podcast``!") + await ctx.author.send(content=f"You are blacklisted from ``{prefix}podcast``!") return else: await submission_channel.send(content=f"{question}")