From 5031b4cae70702920865340bf6976706d54fffd1 Mon Sep 17 00:00:00 2001 From: Pascal Lais Date: Wed, 8 Dec 2021 09:34:34 +0100 Subject: [PATCH] Add seperator in output between days --- run_all.py | 1 + 1 file changed, 1 insertion(+) diff --git a/run_all.py b/run_all.py index b5c7324..8171ae8 100644 --- a/run_all.py +++ b/run_all.py @@ -10,6 +10,7 @@ for dir in [x for x in sorted(listdir('.')) if isdir(x)]: file = dir + '/' + dir + '.py' input = dir + '/input.txt' if isfile(file) and isfile(input): + print('--------------------------------') print(dir, ':', sep='') start_time = time() with Popen(["python3", file], stdout=PIPE, bufsize=1, universal_newlines=True) as p: