From 634226f0d3819b4cb2f0c7fc11493d2b1670970a Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 24 Sep 2023 20:45:28 -0400 Subject: [PATCH] fix(musicdownloader): pylint fixes --- musicdownloader/musicdownloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/musicdownloader/musicdownloader.py b/musicdownloader/musicdownloader.py index 227e056..a7f8cbd 100644 --- a/musicdownloader/musicdownloader.py +++ b/musicdownloader/musicdownloader.py @@ -148,7 +148,7 @@ class MusicDownloader(commands.Cog): msg = ctx.send message = await msg("YouTube Downloader started!") try: - ytdlp_output = youtube_download(self, url, data_path, message) + ytdlp_output = youtube_download(self, url, data_path) except (utils.DownloadError, utils.ExtractorError): await message.edit(content="Please provide a link to YouTube and not another site.\nThe site you've linked to is known for using DRM protection, so MusicDownloader cannot download from it.") return