From c9df9f13befe193934681201fa0bebd1c57a43ed Mon Sep 17 00:00:00 2001 From: doomedraven Date: Wed, 10 Dec 2025 14:17:37 +0100 Subject: [PATCH] Rename 'args' to 'arguments' in packages.py --- analyzer/linux/lib/core/packages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyzer/linux/lib/core/packages.py b/analyzer/linux/lib/core/packages.py index 09e2da3128f..199bd253834 100644 --- a/analyzer/linux/lib/core/packages.py +++ b/analyzer/linux/lib/core/packages.py @@ -101,7 +101,7 @@ def __init__(self, target, **kwargs): self.timeout = kwargs.get("timeout") # Command-line arguments for the target. - self.args = self.options.get("args", []) + self.args = self.options.get("arguments", []) # Choose an analysis method (or fallback to apicalls) self.method = self.options.get("method", "apicalls") # Should our target be launched as root or not