remove embed from output message

This commit is contained in:
phixxy 2024-09-04 19:44:59 -07:00
parent 3fc4c0475d
commit a2cfefe02b

View file

@ -19,7 +19,7 @@ class YoutubeDL(BotBaseCog):
process = subprocess.Popen(["python3", "data/ytdl/youtubedl.py", url, video_or_audio]) process = subprocess.Popen(["python3", "data/ytdl/youtubedl.py", url, video_or_audio])
process.wait() process.wait()
output = process.returncode 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: except:
await ctx.send("Usage: !youtubedl <url> <video|audio>") await ctx.send("Usage: !youtubedl <url> <video|audio>")