fix: blanket in path

This commit is contained in:
EstrellaXD
2023-06-01 21:37:22 +08:00
parent 0bc7e34b67
commit 65c358ba77
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ class TorrentPath:
def _gen_save_path(self, data: BangumiData):
folder = (
f"{data.official_title}({data.year})" if data.year else data.official_title
f"{data.official_title} ({data.year})" if data.year else data.official_title
)
save_path = path.join(self.download_path, folder, f"Season {data.season}")
return save_path