From 926883cde90a1b451b6645eb2acd2714479eb7bd Mon Sep 17 00:00:00 2001 From: KF7EEL Date: Thu, 24 Dec 2020 15:29:47 -0800 Subject: [PATCH] modify APRS timing --- hblink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hblink.py b/hblink.py index d973a9a..aa4071e 100644 --- a/hblink.py +++ b/hblink.py @@ -151,7 +151,7 @@ def aprs_upload(config): if config['APRS']['ENABLED']: if int(config['APRS']['REPORT_INTERVAL']) >= 10: l=task.LoopingCall(sendAprs) - interval_time = int(config['APRS']['REPORT_INTERVAL'])*60 + interval_time = int(int(config['APRS']['REPORT_INTERVAL'])*60) l.start(interval_time) else: l=task.LoopingCall(sendAprs)