cleanup: removed 'Galaxy' from messages

This commit is contained in:
Seaswimmer 2023-08-02 01:36:18 -04:00
parent 0b87a50f2b
commit b6d948ae31
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -164,9 +164,9 @@ class MusicDownloader(commands.Cog):
if delete is True or await self.bot.is_owner(ctx.author) is False:
if ytdlp_output[1] is False:
os.remove(full_filename)
await complete_message.edit(content="YouTube Downloader completed!\nFile has been deleted from Galaxy.\nDownloaded file:")
await complete_message.edit(content="YouTube Downloader completed!\nFile has been deleted.\nDownloaded file:")
if ytdlp_output[1] is True:
await complete_message.edit(content="YouTube Downloader completed!\nFile has not been deleted from Galaxy, as it was previously downloaded and saved.\nDownloaded file:")
await complete_message.edit(content="YouTube Downloader completed!\nFile has not been deleted, as it was previously downloaded and saved.\nDownloaded file:")
@commands.group(name="dl-blacklist", invoke_without_command=True)
async def blacklist(self, ctx: commands.Context, user: discord.User = None):