Fix meteoalarm exception handling with instance of KeyError (#34828)
This commit is contained in:
parent
bdbeb1d68f
commit
d634ed0bbb
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ def setup_platform(hass, config, add_entities, discovery_info=None):
|
|||
|
||||
try:
|
||||
api = Meteoalert(country, province, language)
|
||||
except KeyError():
|
||||
except KeyError:
|
||||
_LOGGER.error("Wrong country digits or province name")
|
||||
return
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue