From 72c552c1d4cfb377914a572af7f098ceb2beb9ea Mon Sep 17 00:00:00 2001 From: Cameron L <9930502+camlyall@users.noreply.github.com> Date: Wed, 19 Apr 2023 15:15:55 +0100 Subject: [PATCH] Fix incorrect Command init variable Incorrect variable passed to Command object --- a3m/client/clientScripts/normalize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a3m/client/clientScripts/normalize.py b/a3m/client/clientScripts/normalize.py index d3d93eb6..91b368f0 100644 --- a/a3m/client/clientScripts/normalize.py +++ b/a3m/client/clientScripts/normalize.py @@ -470,7 +470,7 @@ def main(job, opts): replacement_dict = get_replacement_dict(job, opts) - cl = Command(rule, command, replacement_dict, once_normalized_callback(job), opts) + cl = Command(job, command, replacement_dict, once_normalized_callback(job), opts) exitstatus = cl.execute() if not exitstatus == 0: