From a998846961b5bf2aca433786372a268abc4dd41c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 20 Sep 2016 08:17:52 +0200 Subject: [PATCH] Add unit to comment (#3452) --- homeassistant/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/config.py b/homeassistant/config.py index d67bbea0bc6..712740419d0 100644 --- a/homeassistant/config.py +++ b/homeassistant/config.py @@ -35,7 +35,8 @@ DEFAULT_CORE_CONFIG = ( (CONF_LATITUDE, 0, 'latitude', 'Location required to calculate the time' ' the sun rises and sets'), (CONF_LONGITUDE, 0, 'longitude', None), - (CONF_ELEVATION, 0, None, 'Impacts weather/sunrise data'), + (CONF_ELEVATION, 0, None, 'Impacts weather/sunrise data' + ' (altitude above sea level in meters)'), (CONF_UNIT_SYSTEM, CONF_UNIT_SYSTEM_METRIC, None, '{} for Metric, {} for Imperial'.format(CONF_UNIT_SYSTEM_METRIC, CONF_UNIT_SYSTEM_IMPERIAL)),