diff --git a/_delphi_utils_python/delphi_utils/archive.py b/_delphi_utils_python/delphi_utils/archive.py index 84f22f03d..42f2ab4f3 100644 --- a/_delphi_utils_python/delphi_utils/archive.py +++ b/_delphi_utils_python/delphi_utils/archive.py @@ -588,11 +588,11 @@ def archive_exports(self, exported_files: Files) -> Tuple[Files, Files]: args = parser.parse_args() params = read_params() run_module(args.archive_type, - params.cache_dir, - params.export_dir, - aws_credentials=params.aws_credentials, + params["cache_dir"], + params["export_dir"], + aws_credentials=params["aws_credentials"], branch_name=args.branch_name, - bucket_name=params.bucket_name, + bucket_name=params["bucket_name"], commit_message=args.commit_message, commit_partial_success=args.commit_partial_success, indicator_prefix=args.indicator_prefix,