From 993dd0a7bd8d158ea25e2a2b379d14080b90e9bc Mon Sep 17 00:00:00 2001 From: Gong Zhile Date: Mon, 14 Jul 2025 00:49:24 +0800 Subject: [PATCH] dxspot.py: fix bad f-string --- dxspot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dxspot.py b/dxspot.py index 403a389..2a1f6c1 100644 --- a/dxspot.py +++ b/dxspot.py @@ -62,8 +62,8 @@ def on_message(client, userdata, msg): return logging.info('Possible Es Spot: ' - + f'{spot['sc']}->{spot['rc']} ' - + f'{int(d)}km {spot['rp']}dB') + + f'{spot["sc"]}->{spot["rc"]} ' + + f'{int(d)}km {spot["rp"]}dB') tracker.add_match(spot['t']) def update_image(state, font_path=IMG_FONT, output=IMG_OUT_PATH):