From 7a4cc8e082405fbbeaca31b6abac3e4a0441b16f Mon Sep 17 00:00:00 2001 From: thecynic Date: Mon, 10 Jul 2017 20:52:37 -0700 Subject: [PATCH] Fix typo (sending USERNAME instead of PASSWORD) introduced in #7963 (#8433) --- homeassistant/components/lutron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/lutron.py b/homeassistant/components/lutron.py index d9b943762dc..819844325d1 100644 --- a/homeassistant/components/lutron.py +++ b/homeassistant/components/lutron.py @@ -41,7 +41,7 @@ def setup(hass, base_config): config = base_config.get(DOMAIN) 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].connect()