This commit is contained in:
Jean-Marie Mineau 2025-05-13 18:05:59 +02:00
parent add7c357d4
commit 55b5632bb8
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2

View file

@ -189,7 +189,7 @@ def main():
)
args = parser.parse_args()
with args.applist.open("r") as fp:
apklist = fp.readlines()
apklist = list(map(str.strip, fp.readlines()))
run(apklist, args.out_folder, args.analysis_script)