From 8cd61a72c8f16e8651533baf2d677d3345bd3712 Mon Sep 17 00:00:00 2001 From: Walter Boring Date: Fri, 26 Sep 2025 11:27:03 -0400 Subject: [PATCH] Fixed missing f string This updates a string output in process_other_packet where the string being output wasn't prefixed with the f character to denote that python needed to format the contents with the object. --- aprsd/threads/rx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprsd/threads/rx.py b/aprsd/threads/rx.py index 5ee003f..9c46644 100644 --- a/aprsd/threads/rx.py +++ b/aprsd/threads/rx.py @@ -275,7 +275,7 @@ class APRSDProcessPacketThread(APRSDFilterThread): def process_other_packet(self, packet, for_us=False): """Process an APRS Packet that isn't a message or ack""" if not for_us: - LOG.info("Got a packet meant for someone else '{packet.to_call}'") + LOG.info(f"Got a packet meant for someone else '{packet.to_call}'") else: LOG.info('Got a non AckPacket/MessagePacket')