mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-31 17:11:31 -07:00
Merge pull request #698 from ansible-collections/param-mgr-sanity
Some checks failed
Run integration tests for the cloud.google collection / integration (stable-2.16) (push) Has been cancelled
Run integration tests for the cloud.google collection / integration (stable-2.17) (push) Has been cancelled
Run integration tests for the cloud.google collection / integration (stable-2.18) (push) Has been cancelled
Some checks failed
Run integration tests for the cloud.google collection / integration (stable-2.16) (push) Has been cancelled
Run integration tests for the cloud.google collection / integration (stable-2.17) (push) Has been cancelled
Run integration tests for the cloud.google collection / integration (stable-2.18) (push) Has been cancelled
Fix an invalid format string on Python 2.7
This commit is contained in:
commit
61bd3d1c13
1 changed files with 1 additions and 1 deletions
|
@ -640,7 +640,7 @@ def main():
|
|||
fetch['changed'] = changed
|
||||
fetch['name'] = module.params.get('name')
|
||||
except Exception as e:
|
||||
module.fail_json(msg=f"An unexpected error occurred: {str(e)}")
|
||||
module.fail_json(msg=str(e))
|
||||
|
||||
module.exit_json(**fetch)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue