[obvious,committed] PR33278 abidb patch
Commit Message
Hi -
Committed as obvious:
Author: Frank Ch. Eigler <fche@redhat.com>
Date: Thu Aug 14 14:07:15 2025 -0400
PR33278: abidb: fix -Zextension mode
A previous patch added an indentation typo on a fragment of
code. The effect was that "abidb -Zext" stopped working, though
"abidb -Zext=cmd" did.
Signed-off-by: Frank Ch. Eigler <fche@elastic.org>
@@ -224,7 +224,8 @@ args = None
cmd = "cat" # default: pass through to libarchive
else:
cmd = "=".join(extcmd[1:]) # the rest of the command, filling other ='s back in
- ra["."+ext] = cmd
+ ra["."+ext] = cmd
+ logging.debug(f"parsing libarchive extension {ext} with {cmd}")
def submit_file_generator(args):