From 2a353020ababe3e99250cc8d2093d8a3bc42b9f0 Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Sat, 13 Jan 2024 16:45:06 +0800 Subject: [PATCH] fix --- pywxdump/__init__.py | 2 +- pywxdump/cli.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pywxdump/__init__.py b/pywxdump/__init__.py index afeddacd..9e5a1078 100644 --- a/pywxdump/__init__.py +++ b/pywxdump/__init__.py @@ -22,4 +22,4 @@ VERSION_LIST = {} VERSION_LIST_PATH = None -__version__ = "2.4.14" +__version__ = "2.4.15" diff --git a/pywxdump/cli.py b/pywxdump/cli.py index 89d7a838..a27c4fa2 100644 --- a/pywxdump/cli.py +++ b/pywxdump/cli.py @@ -199,6 +199,7 @@ def init_parses(self, parser): def run(self, args): print(f"[*] PyWxDump v{pywxdump.__version__}") # (merge)和(msg_path,micro_path,media_path) 二选一 + print(not args.merge_path, not (args.msg_path and args.micro_path and args.media_path)) if not args.merge_path and not (args.msg_path and args.micro_path and args.media_path): print("[-] 请输入数据库路径([merge_path] or [msg_path, micro_path, media_path])") return