From 8f436223b3a01ed2728a617aa0a4d74f9d4f6585 Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Sat, 20 Apr 2024 18:59:53 +0800 Subject: [PATCH] fix --- pywxdump/server.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pywxdump/server.py b/pywxdump/server.py index ee2c35d..87fd949 100644 --- a/pywxdump/server.py +++ b/pywxdump/server.py @@ -110,12 +110,10 @@ def start_falsk(merge_path="", wx_path="", key="", my_wxid="", port=5000, online if __name__ == '__main__': - msg_path = r"****.db" - micro_path = r"****.db" - media_path = r"****.db" + merge_path = r"****.db" wx_path = r"****" my_wxid = "****" - start_falsk(msg_path=msg_path, micro_path=micro_path, media_path=media_path, wx_path=wx_path, my_wxid=my_wxid, + start_falsk(merge_path=merge_path, wx_path=wx_path, my_wxid=my_wxid, port=5000, online=False, debug=False, isopenBrowser=False)