This commit is contained in:
deathbybandaid 2020-12-06 09:17:54 -05:00
parent 7c195df953
commit 33ffa8e3dc

View File

@ -34,7 +34,10 @@ class OriginService():
geoID, geoLST = results["jobs"]["1"]["data"]["geoId"], results["jobs"]["1"]["data"]["channelListId"] geoID, geoLST = results["jobs"]["1"]["data"]["geoId"], results["jobs"]["1"]["data"]["channelListId"]
except Exception as e: except Exception as e:
self.fhdhr.logger.warning("XUMO Setup Failed %s" % e) self.fhdhr.logger.warning("XUMO Setup Failed %s" % e)
geoID, geoLST = None, None return None, None
print(geoID + " " + geoLST)
return geoID, geoLST return geoID, geoLST
def get_status_dict(self): def get_status_dict(self):