Merge pull request #5 from zt4/patch-1

Fix quotes so it runs under Raspberry Pi with Python 3.11
This commit is contained in:
fdlamotte 2025-07-16 07:26:42 +02:00 committed by GitHub
commit 4bf636f6e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1464,7 +1464,7 @@ async def next_cmd(mc, cmds, json_output=False):
print(json.dumps(mc.pending_contacts, indent=4))
else:
for c in mc.pending_contacts.items():
print(f"{c[1]["adv_name"]}: {c[1]["public_key"]}")
print(f"{c[1]['adv_name']}: {c[1]['public_key']}")
case "flush_pending":
mc.flush_pending_contacts()