From a67ab8534e16b3fa75a8072a851ccf384ec06f1a Mon Sep 17 00:00:00 2001 From: rel000 <63310999+rel000@users.noreply.github.com> Date: Wed, 8 Apr 2020 01:23:27 +0800 Subject: [PATCH] fix: path error --- core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.py b/core.py index 34af08f..e7ba866 100755 --- a/core.py +++ b/core.py @@ -167,7 +167,7 @@ def get_info(json_data): # 返回json里的数据 def smallCoverCheck(path, number, imagecut, cover_small, c_word, Config, filepath, failed_folder): if imagecut == 3: - DownloadFileWithFilename(cover_small, path + '/' + number + c_word + '-poster.jpg', path, Config, filepath, failed_folder) + DownloadFileWithFilename(cover_small, number + c_word + '-poster.jpg', path, Config, filepath, failed_folder) print('[+]Image Downloaded! '+ path + '/' + number + c_word + '-poster.jpg')