remove embed from output message
This commit is contained in:
parent
3fc4c0475d
commit
a2cfefe02b
1 changed files with 1 additions and 1 deletions
|
|
@ -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>")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue