From 4a0118e5f95653e6239a4f33309b5bcd38e26b15 Mon Sep 17 00:00:00 2001 From: guotingjin Date: Mon, 29 Jul 2024 13:54:59 +0800 Subject: [PATCH] fix a bug that cause split.py cannot work properly --- split.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/split.py b/split.py index 4d8b307..a1584f4 100755 --- a/split.py +++ b/split.py @@ -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]