Skip to content

Commit

Permalink
Merge pull request #70 from lilab-bcb/recursive-fix
Browse files Browse the repository at this point in the history
removed recursive keyword as it's not needed (and not recognized by all file systems)
  • Loading branch information
yihming authored Jan 11, 2024
2 parents 1547289 + d643e9b commit 83aabeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alto/commands/parse_monitoring_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def execute(input_path, report_filename, plot_filename=None):
is_dir = fs.isdir(input_path)
if is_dir:
input_path = input_path.rstrip(fs.sep)
log_paths = fs.glob(input_path + f"{fs.sep}**{fs.sep}monitoring.log", recursive=True)
log_paths = fs.glob(f"{input_path}{fs.sep}**{fs.sep}monitoring.log")
if len(log_paths) == 0:
raise ValueError("No monitoring.log files found")
else:
Expand Down

0 comments on commit 83aabeb

Please sign in to comment.