lib.Distro.pkg_files(): Fix argument name

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-03-17 07:27:52 +01:00
commit 58142a1115

View file

@ -137,7 +137,7 @@ class Distro(abc.ABC):
pass
async def pkg_files(self, name: str) -> Iterable[str]:
if not names:
log(WARNING, f'No packages specified for inspection')
if not name:
log(WARNING, f'No package specified for inspection')
return []
return await self._pkg_files(name)