From 16a1d817571063ea8630810a7e82c92f1eade96d Mon Sep 17 00:00:00 2001 From: KF7EEL Date: Thu, 24 Dec 2020 11:39:16 -0800 Subject: [PATCH] fix indentation issue --- hblink.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/hblink.py b/hblink.py index 15486ad..f1499bf 100644 --- a/hblink.py +++ b/hblink.py @@ -148,13 +148,13 @@ def sendAprs(): def aprs_upload(): if CONFIG['APRS']['ENABLED']: - if int(CONFIG['APRS']['REPORT_INTERVAL']) >= 10: - l=task.LoopingCall(sendAprs) - l.start(int(CONFIG['APRS']['REPORT_INTERVAL'])*60) - else: - l=task.LoopingCall(sendAprs) - l.start(15*60) - logger.info('Report Time APRS to short') + if int(CONFIG['APRS']['REPORT_INTERVAL']) >= 10: + l=task.LoopingCall(sendAprs) + l.start(int(CONFIG['APRS']['REPORT_INTERVAL'])*60) + else: + l=task.LoopingCall(sendAprs) + l.start(15*60) + logger.info('Report Time APRS to short') # Timed loop used for reporting HBP status