From a2cfefe02b784bf0cc145bb60a733fb96d860f58 Mon Sep 17 00:00:00 2001 From: phixxy Date: Wed, 4 Sep 2024 19:44:59 -0700 Subject: [PATCH] remove embed from output message --- cogs/ytdl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/ytdl.py b/cogs/ytdl.py index 63ecb71..555a47d 100644 --- a/cogs/ytdl.py +++ b/cogs/ytdl.py @@ -19,7 +19,7 @@ class YoutubeDL(BotBaseCog): process = subprocess.Popen(["python3", "data/ytdl/youtubedl.py", url, video_or_audio]) process.wait() output = process.returncode - await ctx.send(f"Downloaded {video_or_audio} from {url}, output: {output}") + await ctx.send(f"Downloading {video_or_audio} from {url}...", embed=None) except: await ctx.send("Usage: !youtubedl ")