From 69ceea41c774cbb3f52d14daf76e2f63c691c8dd Mon Sep 17 00:00:00 2001 From: wd-mgreynolds Date: Tue, 24 Oct 2023 15:31:28 -0400 Subject: [PATCH] Bug fix dataChanges validate. --- prism/commands/dataChanges_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prism/commands/dataChanges_commands.py b/prism/commands/dataChanges_commands.py index 7181df1..beceae8 100644 --- a/prism/commands/dataChanges_commands.py +++ b/prism/commands/dataChanges_commands.py @@ -71,7 +71,7 @@ def dataChanges_validate(ctx, isname, dct, search): validate = p.dataChanges_validate(dct) logger.info(json.dumps(validate, indent=2)) else: - data_change_tasks = p.dataChanges_get(name=dct, search=search) + data_change_tasks = p.dataChanges_get(datachange_name=dct, search=search) if data_change_tasks["total"] == 0: logger.error("No matching data change task(s) found.")