Commit f0722376 authored by zhougaofeng's avatar zhougaofeng
Browse files

Update common_parse.py

parent c9d53e7a
......@@ -74,7 +74,7 @@ def determine_output_dir(output_dir):
def process_input(input_path, output_dir):
"""Process the input path, which can be a directory or a single file."""
if os.path.isdir(input_path):
logger.info(f'开始处理{input_path}目录下的文件')
logger.info(f'开始处理{input_path}目录下的文件')
for root, _, files in os.walk(input_path):
for file in files:
file_path = os.path.join(root, file)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment