From a1effea78f00ed24c5f35a3a9e74ab96901354a0 Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Tue, 12 Dec 2023 09:43:13 +0800 Subject: [PATCH] =?UTF-8?q?merge=20=E5=8F=82=E6=95=B0=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pywxdump/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pywxdump/cli.py b/pywxdump/cli.py index a9624d05..93bf405c 100644 --- a/pywxdump/cli.py +++ b/pywxdump/cli.py @@ -326,9 +326,9 @@ def run(self, args): out_dbs.append(ret1[1]) print("-" * 32) print( - "[-] " + f"共 {len(errors)} 个文件解密失败(可能原因:非当前登录用户数据库;非加密数据库),详见{out_path}下‘解密失败.txt’;") + "[-] " + f"警告:共 {len(errors)} 个文件未解密(可能原因:非当前登录用户数据库;非加密数据库),详见{out_path}下‘未解密.txt’;") # print("; ".join([f'"{wxdbpaths[i]}"' for i in errors])) - with open(os.path.join(out_path, "解密失败.txt"), "w", encoding="utf-8") as f: + with open(os.path.join(out_path, "未解密.txt"), "w", encoding="utf-8") as f: f.write("\n".join([f'{i}' for i in errors])) print("=" * 32)