Merge "Bugfix: Decrypt files.write wrong arg order"

This commit is contained in:
Zuul 2019-07-11 04:54:48 +00:00 committed by Gerrit Code Review
commit d409e35586
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ def decrypt(*, path, save_location, overwrite, site_name):
decrypted = engine.secrets.decrypt(path, site_name=site_name)
if overwrite:
for path, data in decrypted.items():
files.write(path, data)
files.write(data, path)
elif save_location is None:
for data in decrypted.values():
click.echo(data)