Add link to docs

This commit is contained in:
Fabian Affolter 2015-10-18 19:45:24 +02:00
parent bbed4a262c
commit f45e0eabe3

View file

@ -2,6 +2,9 @@
homeassistant.components.thermostat.nest homeassistant.components.thermostat.nest
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Adds support for Nest thermostats. Adds support for Nest thermostats.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/thermostat.nest.html
""" """
import socket import socket
import logging import logging
@ -44,7 +47,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
]) ])
except socket.error: except socket.error:
logger.error( logger.error(
"Connection error logging into the nest web service" "Connection error logging into the nest web service."
) )