Improve error handling

This commit is contained in:
s3lph 2022-01-16 20:24:51 +01:00
parent 492dd716b9
commit 32790057a6
Signed by: s3lph
GPG key ID: 8AC98A811E5BEFF5

View file

@ -81,9 +81,9 @@ class UltimakerBot(Plugin):
if resp.status != 200:
raise RuntimeError()
rdata = await resp.text()
now = json.loads(rdata)
except BaseException:
return None, False
now = json.loads(rdata)
with open(self.config['poll'][cache_key], 'a+') as cache:
cache.seek(0)
try: