mirror of
https://github.com/craigerl/aprsd.git
synced 2025-10-17 22:20:22 -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:
parent
556554b1a7
commit
8cd61a72c8
@ -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')
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user