Fix ordering of args to libcloud_storage.download_object module

This commit is contained in:
Oliver Elliott 2022-05-17 14:36:03 +01:00 committed by Megan Wilhite
parent c7fc0df7fb
commit c60d7534e0

View file

@ -188,6 +188,6 @@ def file_present(container, name, path, profile, overwrite_existing=False):
:type overwrite_existing: ``bool``
"""
result = __salt__["libcloud_storage.download_object"](
path, container, name, profile, overwrite_existing
container, name, path, profile, overwrite_existing
)
return state_result(result, "Downloaded object", name, {})