diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index bfae4a9..7f97b13 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -14,7 +14,7 @@ on:
version:
description: 'Release version'
required: true
- default: '2024.09.09.v2'
+ default: '2024.10.24.v1'
body:
description: 'Release body text'
required: true
diff --git a/README.md b/README.md
index fbeaba5..47f1e51 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,8 @@
+### 2024.10.24
+修复未处理输入时拖入文件带引号导致的文件路径检查错误。
### 2024.09.09
因额外依赖库未打包到可执行文件,重新打包可执行文件。
更新相关使用教程。
diff --git a/epub_tool.py b/epub_tool.py
index e5dadd3..41aadf5 100644
--- a/epub_tool.py
+++ b/epub_tool.py
@@ -20,6 +20,7 @@ def prepare_args():
def check_args(args):
if not args.i:
args.i = input("请输入epub文件路径或文件夹路径:")
+ args.i = args.i.strip("'").strip('"').strip()
# 判断输入文件是否为文件夹
if os.path.isdir(args.i):
file_list = []