From 17a4d4e38af645ed6bcb7de60e8ca56ad09432c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20M=C3=BCller?= Date: Wed, 3 Apr 2024 13:26:27 +0200 Subject: [PATCH] =?UTF-8?q?FIX=20verschiebung=20der=20Logdatei=20in=20korr?= =?UTF-8?q?ektes=20Verzeichnis=20jetzt=20m=C3=B6glich?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/caditem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/caditem.py b/lib/caditem.py index 472da6f..b324a16 100644 --- a/lib/caditem.py +++ b/lib/caditem.py @@ -880,7 +880,7 @@ class CadItem(DataModel): if not ret: log_editor = os.environ.get(r'LOG_EDITOR') subprocess.run(f"{log_editor} {path}") - shutil.move(path, self.get_env('log')) + shutil.move(path, self._controller.get_env('log')) return ret