From 6aa52fde2cf6630fb2e2eaa9895bc650cdae075f Mon Sep 17 00:00:00 2001 From: Michael Clemens Date: Wed, 1 Jun 2022 16:23:13 +0200 Subject: [PATCH] bugfix --- tasmaprs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmaprs.py b/tasmaprs.py index f4ef071..056cabd 100755 --- a/tasmaprs.py +++ b/tasmaprs.py @@ -47,7 +47,7 @@ def send_aprs(weather_data, energy_data): energy_data["Total"], weather_data) print(msg) ais.sendall("{}>APRS,TCPIP*:={}{} {}".format(CALL, GPS_COORDINATES, APRS_SYMBOL, msg)) - ais.sendall("{}>APRS,TCPIP*:>") + ais.sendall("{}>APRS,TCPIP*:>".format(CALL)) def get_weather_data():