Remove an f-string usage for backward compatibility

This commit is contained in:
Chris Hawk 2024-08-22 15:40:29 -07:00
parent ac707b2508
commit bc7313854d

View file

@ -443,7 +443,7 @@ def main():
fetch.pop('value')
fetch.pop('payload')
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:
fetch['msg'] = "not returning secret value since 'return_value is set to false"