Fix validate config in mysensors
* Add check of port in config.
This commit is contained in:
parent
4ce1a67c13
commit
ae2fd149a5
1 changed files with 5 additions and 0 deletions
|
@ -56,6 +56,11 @@ def setup(hass, config):
|
||||||
{DOMAIN: [CONF_GATEWAYS]},
|
{DOMAIN: [CONF_GATEWAYS]},
|
||||||
_LOGGER):
|
_LOGGER):
|
||||||
return False
|
return False
|
||||||
|
if not all(CONF_PORT in gateway
|
||||||
|
for gateway in config[DOMAIN][CONF_GATEWAYS]):
|
||||||
|
_LOGGER.error('Missing required configuration items '
|
||||||
|
'in %s: %s', DOMAIN, CONF_PORT)
|
||||||
|
return False
|
||||||
|
|
||||||
import mysensors.mysensors as mysensors
|
import mysensors.mysensors as mysensors
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue