ffes / domoticz-buienradar

Domoticz Buienradar.nl Weather Lookup Plugin
MIT License
14 stars 5 forks source link

URLError #5

Closed eldigo closed 7 years ago

eldigo commented 7 years ago

Hi, I saw URLError's when my internetconnect was down,
You might want to catch the URLError

in the buienradar.py currently: except urllib.error.HTTPError as e:

new: except (urllib.error.HTTPError, urllib.error.URLError) as e:

ffes commented 7 years ago

Good point