1
0
mirror of https://github.com/craigerl/aprsd.git synced 2025-10-18 06:30:25 -04:00

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.
This commit is contained in:
Walter Boring 2025-09-26 11:27:03 -04:00
parent 556554b1a7
commit 8cd61a72c8

View File

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