Skip to content

Commit

Permalink
except vol.MultipleInvalid in Broadlink #11795
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielhiversen committed Feb 1, 2018
1 parent 2f07ffc commit 3a41973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/sensor/broadlink.py
Expand Up @@ -129,7 +129,7 @@ def _update(self, retry=3):
if retry < 1:
_LOGGER.error(error)
return
except vol.Invalid:
except vol.Invalid, vol.MultipleInvalid:
pass # Continue quietly if device returned malformed data
if retry > 0 and self._auth():
self._update(retry-1)
Expand Down

0 comments on commit 3a41973

Please sign in to comment.