Skip to content

Commit

Permalink
Fix incorrect Command init variable
Browse files Browse the repository at this point in the history
Incorrect variable passed to Command object
  • Loading branch information
camlyall authored and sevein committed Apr 19, 2023
1 parent 6431c8c commit 72c552c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion a3m/client/clientScripts/normalize.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 72c552c

Please sign in to comment.