Skip to content

Commit 9422c8d

Browse files
authored
Merge pull request #1603 from Pinata-Consulting/make-elapsed-include-generate-abstract
makefile: include generate_abstract.log in elapsed target
2 parents abff71b + e790361 commit 9422c8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/util/genElapsedTime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def print_log_dir_times(logdir):
3030
print(logdir)
3131

3232
# Loop on all log files in the directory
33-
for f in sorted(pathlib.Path(logdir).glob('**/[0-9]_*.log')):
33+
for f in sorted(pathlib.Path(logdir).glob('**/*.log')):
3434
# Extract Elapsed Time line from log file
3535
with open(str(f)) as logfile:
3636
found = False

0 commit comments

Comments
 (0)