From 8aab4397970875be49d010e0dd93c2b3f69aa9e7 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Sun, 16 Aug 2026 07:03:10 +0200 Subject: [PATCH] lib.TarIo: Fix missing paren in _read_filtered() _read_filtered() logs an error when reading the tar file fails, but the opening parenthesis of the error detail after the path is never closed. Close it. Assisted-by: unsloth/Qwen3.8-27B-GGUF:Q4_K_M with pi.dev v0.84.2 Signed-off-by: Jan Lindemann --- src/python/jw/pkg/lib/TarIo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/jw/pkg/lib/TarIo.py b/src/python/jw/pkg/lib/TarIo.py index e0aee4da..9853dace 100644 --- a/src/python/jw/pkg/lib/TarIo.py +++ b/src/python/jw/pkg/lib/TarIo.py @@ -51,7 +51,7 @@ class TarIo(CopyContext): try: blob = (await self.src.get(path)).stdout except Exception as e: - log(ERR, f'Failed to read tar file "{path}" ({str(e)}') + log(ERR, f'Failed to read tar file "{path}" ({str(e)})') raise return self._filter_tar_file(blob, path_filter, matched = matched)