correct some f-strings

This commit is contained in:
Florent de Lamotte 2025-04-16 22:11:00 +02:00
parent 3f678880cd
commit a15346339d

View file

@ -601,7 +601,7 @@ async def next_cmd(mc, cmds, json_output=False):
elif json_output :
print(json.dumps(res.payload, indent=4))
else:
print(f"{res.payload["response"]}")
print(f"{res.payload['response']}")
case _ :
if cmd[0] == "@" :
@ -612,7 +612,7 @@ async def next_cmd(mc, cmds, json_output=False):
elif json_output :
print(json.dumps(res.payload, indent=4))
else:
print(f"{res.payload["response"]}")
print(f"{res.payload['response']}")
else :
logger.error(f"Unknown command : {cmd}")