From 767f3d58ff467f392f7ce88967e547236ccd6b2d Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 27 Nov 2016 12:13:01 -0800 Subject: [PATCH] Add websocket_api as frontend dependency --- homeassistant/components/frontend/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/frontend/__init__.py b/homeassistant/components/frontend/__init__.py index e19e5f6edec..4d9fb8624d8 100644 --- a/homeassistant/components/frontend/__init__.py +++ b/homeassistant/components/frontend/__init__.py @@ -16,7 +16,7 @@ from homeassistant.components.http.const import KEY_DEVELOPMENT from .version import FINGERPRINTS DOMAIN = 'frontend' -DEPENDENCIES = ['api'] +DEPENDENCIES = ['api', 'websocket_api'] URL_PANEL_COMPONENT = '/frontend/panels/{}.html' URL_PANEL_COMPONENT_FP = '/frontend/panels/{}-{}.html' STATIC_PATH = os.path.join(os.path.dirname(__file__), 'www_static')