From 6d1e99d8ab98ac991d601c2708fe14b4267772e1 Mon Sep 17 00:00:00 2001 From: lededev Date: Sun, 3 Oct 2021 10:44:57 +0800 Subject: [PATCH] fix issue 603 --- core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.py b/core.py index 90da00c..7794b9e 100755 --- a/core.py +++ b/core.py @@ -96,7 +96,7 @@ def create_folder(json_data, conf: config.Config): # 创建文件夹 print(f"[-]Fatal error! Can not make folder '{path}'") sys.exit(0) - return path + return os.path.normcase(path) # =====================资源下载部分===========================