Skip to content

Commit a37e559

Browse files
authored
Merge pull request #1030 from cmu-delphi/validator_dryrun
Fix misplaced parenthesis preventing dry-run mode
2 parents 655fc65 + 592a92d commit a37e559

File tree

1 file changed

+2
-2
lines changed
  • _delphi_utils_python/delphi_utils/validator

1 file changed

+2
-2
lines changed

_delphi_utils_python/delphi_utils/validator/run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def run_module():
1919
validator = Validator(params)
2020
validator.validate().print_and_exit(
2121
get_structured_logger(__name__,
22-
params["common"].get("log_filename", None),
23-
not args.dry_run))
22+
params["common"].get("log_filename", None)),
23+
not args.dry_run)
2424

2525

2626
def validator_from_params(params):

0 commit comments

Comments
 (0)