From ad69269475225e2e5edfe5bfdecf252a50b0096f Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 31 Jul 2023 23:20:36 -0400 Subject: [PATCH] fix: made the path into a string on line 13 --- musicdownloader/musicdownloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/musicdownloader/musicdownloader.py b/musicdownloader/musicdownloader.py index 0213f1e..36b2861 100644 --- a/musicdownloader/musicdownloader.py +++ b/musicdownloader/musicdownloader.py @@ -10,7 +10,7 @@ class MusicDownloader(commands.Cog): self.bot = bot self.config = Config.get_conf(self, identifier=475728338) self.config.register_global( - save_directory = data_manager.cog_data_path() + f"{sep}MusicDownloader" + save_directory = str(data_manager.cog_data_path()) + f"{sep}MusicDownloader" ) @commands.command()