From 498aeea1c9d12a2ff6658b98d6aba3be30c061a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDiga=20Luk=C5=A1i=C4=8D?= <31988337+zigaLuksic@users.noreply.github.com> Date: Wed, 25 Oct 2023 15:30:26 +0200 Subject: [PATCH] fix mistake of logs paths being absolute (#765) --- eolearn/visualization/eoexecutor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eolearn/visualization/eoexecutor.py b/eolearn/visualization/eoexecutor.py index 469805b2..45d0dade 100644 --- a/eolearn/visualization/eoexecutor.py +++ b/eolearn/visualization/eoexecutor.py @@ -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: