fix a bug that cause split.py cannot work properly

This commit is contained in:
guotingjin 2024-07-29 13:54:59 +08:00
parent c8bcaf8a91
commit 4a0118e5f9

View File

@ -38,7 +38,7 @@ if os.path.exists(h_out):
do_split = in_time > out_time
if do_split:
with open(in_file) as f:
with open('.' + in_file) as f:
lines = f.readlines()
python_version = sys.version_info[0]