fix: made the path into a string on line 13
This commit is contained in:
parent
39fd289621
commit
ad69269475
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue