From 0effe146194d68527706f468ddbd0101b0bf091e Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Mon, 13 Feb 2017 21:58:16 -0800 Subject: [PATCH] Z-Wave file name fix (#5985) --- homeassistant/components/config/zwave.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/config/zwave.py b/homeassistant/components/config/zwave.py index ec01e2dad6e..c01f22f0207 100644 --- a/homeassistant/components/config/zwave.py +++ b/homeassistant/components/config/zwave.py @@ -8,12 +8,12 @@ from homeassistant.components.zwave import DEVICE_CONFIG_SCHEMA_ENTRY from homeassistant.util.yaml import load_yaml, dump -DEVICE_CONFIG = 'zwave_device_config.yml' +DEVICE_CONFIG = 'zwave_device_config.yaml' @asyncio.coroutine def async_setup(hass): - """Setup the hassbian config.""" + """Setup the Z-Wave config API.""" hass.http.register_view(DeviceConfigView) return True