Skip to content

Commit

Permalink
fix mistake of logs paths being absolute (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
zigaLuksic authored Oct 25, 2023
1 parent 4aa2393 commit 498aeea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eolearn/visualization/eoexecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def make_report(self, include_logs: bool = True) -> None:

template = self._get_template()

log_paths = self.eoexecutor.get_log_paths()
log_paths = self.eoexecutor.get_log_paths(full_path=False)
if not include_logs:
execution_logs = None
elif self.eoexecutor.save_logs:
Expand Down

0 comments on commit 498aeea

Please sign in to comment.