File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -198,9 +198,9 @@ def init_parses(self, parser):
198
198
199
199
def run (self , args ):
200
200
print (f"[*] PyWxDump v{ pywxdump .__version__ } " )
201
- # merge和 (msg_path,micro_path,media_path) 二选一
202
- if ( not args .merge_path ) or ( not args .msg_path and not args .micro_path and not args .media_path ):
203
- print ("[-] 请输入数据库路径([merge_path] or [msg_path,micro_path,media_path])" )
201
+ # (merge)和 (msg_path,micro_path,media_path) 二选一
202
+ if not args .merge_path and not ( args .msg_path and args .micro_path and args .media_path ):
203
+ print ("[-] 请输入数据库路径([merge_path] or [msg_path, micro_path, media_path])" )
204
204
return
205
205
206
206
# 从命令行参数获取值
@@ -220,7 +220,6 @@ def run(self, args):
220
220
221
221
if not os .path .exists (args .msg_path ) or not os .path .exists (args .micro_path ) or not os .path .exists (
222
222
args .media_path ):
223
- print (os .path .exists (args .msg_path ), os .path .exists (args .micro_path ), os .path .exists (args .media_path ))
224
223
print ("[-] 输入数据库路径不存在" )
225
224
return
226
225
You can’t perform that action at this time.
0 commit comments