Fix typo (sending USERNAME instead of PASSWORD) introduced in #7963 (#8433)

This commit is contained in:
thecynic 2017-07-10 20:52:37 -07:00 committed by Paulus Schoutsen
parent 92dc76773a
commit 7a4cc8e082

View File

@ -41,7 +41,7 @@ def setup(hass, base_config):
config = base_config.get(DOMAIN) config = base_config.get(DOMAIN)
hass.data[LUTRON_CONTROLLER] = Lutron( hass.data[LUTRON_CONTROLLER] = Lutron(
config[CONF_HOST], config[CONF_USERNAME], config[CONF_USERNAME]) config[CONF_HOST], config[CONF_USERNAME], config[CONF_PASSWORD])
hass.data[LUTRON_CONTROLLER].load_xml_db() hass.data[LUTRON_CONTROLLER].load_xml_db()
hass.data[LUTRON_CONTROLLER].connect() hass.data[LUTRON_CONTROLLER].connect()