From 09485ea534cf1c975f9842e2cc193b4a00c13f11 Mon Sep 17 00:00:00 2001 From: tomsht01 Date: Tue, 4 Mar 2025 12:48:09 +0200 Subject: [PATCH] fix: allow no filters patch --- patchelf/unpack/patch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/patchelf/unpack/patch.py b/patchelf/unpack/patch.py index 7c1dfda..615d255 100644 --- a/patchelf/unpack/patch.py +++ b/patchelf/unpack/patch.py @@ -40,6 +40,7 @@ def arguments(prsr: ArgumentParser) -> None: metavar="GLOB", help="Filters members from the archive.", nargs="*", + default=[], ) prsr.add_argument( "--output", -- GitLab