From a77161399dc83091805ab4e2b0e21c0f16d3826d Mon Sep 17 00:00:00 2001 From: Christopher Smith Date: Thu, 1 Apr 2021 04:25:09 -0500 Subject: [PATCH] Cleaned up some chattiness in output. --- ir-aprsisd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ir-aprsisd b/ir-aprsisd index af6c87f..2c5f63e 100755 --- a/ir-aprsisd +++ b/ir-aprsisd @@ -151,7 +151,6 @@ def getSSID(DID): #If we have a Devices section, the SSID list is static. if DID not in SSIDList: if conf.has_section('Devices'): - print("No device mapping") return None SSIDList[DID] = ''.join([Call,"-",str(SSNum)]) SSNum = SSNum + 1 @@ -228,7 +227,7 @@ def getEvents(): try: KML = http.open(conf['inReach']['URL']).read() except Exception as e: - print(''.join(["Error reading URL: ", conf['inReach']['URL']])) + print("Error reading URL: " + conf['inReach']['URL']) return None try: data = xml.dom.minidom.parseString(KML).documentElement