mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 02:40:29 -07:00
Remove an f-string usage for backward compatibility
This commit is contained in:
parent
ac707b2508
commit
bc7313854d
1 changed files with 1 additions and 1 deletions
|
@ -443,7 +443,7 @@ def main():
|
||||||
fetch.pop('value')
|
fetch.pop('value')
|
||||||
fetch.pop('payload')
|
fetch.pop('payload')
|
||||||
if "msg" in fetch:
|
if "msg" in fetch:
|
||||||
fetch['msg'] = f"{fetch['msg']} | not returning secret value since 'return_value is set to false"
|
fetch['msg'] = "{} | not returning secret value since 'return_value is set to false".format(fetch['msg'])
|
||||||
else:
|
else:
|
||||||
fetch['msg'] = "not returning secret value since 'return_value is set to false"
|
fetch['msg'] = "not returning secret value since 'return_value is set to false"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue