From 399b433a06fca69550adb57030e8621152ceff68 Mon Sep 17 00:00:00 2001 From: andythigpen Date: Sun, 8 Mar 2015 16:21:35 -0500 Subject: [PATCH] Fix issue causing blank passwords to no longer be accepted. --- homeassistant/components/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/http.py b/homeassistant/components/http.py index bf8ea3b21de..5528267686f 100644 --- a/homeassistant/components/http.py +++ b/homeassistant/components/http.py @@ -111,7 +111,7 @@ def setup(hass, config=None): if config is None or DOMAIN not in config: config = {DOMAIN: {}} - api_password = str(config[DOMAIN].get(CONF_API_PASSWORD)) + api_password = util.convert(config[DOMAIN].get(CONF_API_PASSWORD), str) no_password_set = api_password is None