From 6f1d303171f2374ca4b05fd945792de92201dc74 Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Thu, 13 May 2021 18:52:44 +0200 Subject: [PATCH] fix in cq --- data_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_handler.py b/data_handler.py index 6718398f..855ffafc 100644 --- a/data_handler.py +++ b/data_handler.py @@ -718,7 +718,7 @@ def received_cq(data_in): dxcallsign = bytes(data_in[2:8]).rstrip(b'\x00') dxgrid = bytes(data_in[8:14]).rstrip(b'\x00') - logging.info("CQ RCVD [" + str(dxcallsign), 'utf-8') + "]["+str(dxgrid), 'utf-8')+"] [SNR" + str(static.SNR) + "]") + logging.info("CQ RCVD [" + str(dxcallsign, 'utf-8') + "]["+ str(dxgrid, 'utf-8') +"] [SNR" + str(static.SNR) + "]") helpers.add_to_heard_stations(dxcallsign, 'CQ CQ CQ')