fix: made the path into a string on line 13

This commit is contained in:
Seaswimmer 2023-07-31 23:20:36 -04:00
parent 39fd289621
commit ad69269475
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -10,7 +10,7 @@ class MusicDownloader(commands.Cog):
self.bot = bot self.bot = bot
self.config = Config.get_conf(self, identifier=475728338) self.config = Config.get_conf(self, identifier=475728338)
self.config.register_global( 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() @commands.command()