Skip to content

Commit 0fa2d5a

Browse files
authored
Merge pull request #504 from sgsmob/archive
Pass dict params to archiver
2 parents 6579a19 + 31972e2 commit 0fa2d5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

_delphi_utils_python/delphi_utils/archive.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -588,11 +588,11 @@ def archive_exports(self, exported_files: Files) -> Tuple[Files, Files]:
588588
args = parser.parse_args()
589589
params = read_params()
590590
run_module(args.archive_type,
591-
params.cache_dir,
592-
params.export_dir,
593-
aws_credentials=params.aws_credentials,
591+
params["cache_dir"],
592+
params["export_dir"],
593+
aws_credentials=params["aws_credentials"],
594594
branch_name=args.branch_name,
595-
bucket_name=params.bucket_name,
595+
bucket_name=params["bucket_name"],
596596
commit_message=args.commit_message,
597597
commit_partial_success=args.commit_partial_success,
598598
indicator_prefix=args.indicator_prefix,

0 commit comments

Comments
 (0)