lib.ExecApp: Add class #76

Closed
Jan Lindemann wants to merge 17 commits from jan/feature/20260822-lib-execapp-add-class into master AGit
Showing only changes of commit 8aab439797 - Show all commits

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 <jan@janware.com>
Jan Lindemann 2026-08-16 07:03:10 +02:00
Signed by: Jan Lindemann
GPG key ID: 3750640C9E25DD61

View file

@ -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)