dxspot.py: fix bad f-string

这个提交包含在:
Gong Zhile 2025-07-14 00:49:24 +08:00
父节点 e2eadfe235
当前提交 993dd0a7bd

查看文件

@ -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):