From 8c5d12df51e73d2f5f2c92b990e5ea597255761f Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Sat, 20 Oct 2018 15:18:12 +0200 Subject: [PATCH] Fix some typos (#202) --- esphomeyaml/__main__.py | 2 +- esphomeyaml/components/wifi.py | 2 +- esphomeyaml/config_validation.py | 8 ++++---- esphomeyaml/dashboard/templates/index.html | 6 ------ 4 files changed, 6 insertions(+), 12 deletions(-) diff --git a/esphomeyaml/__main__.py b/esphomeyaml/__main__.py index 5d4ddaf185..36ebfba424 100644 --- a/esphomeyaml/__main__.py +++ b/esphomeyaml/__main__.py @@ -461,7 +461,7 @@ def parse_args(argv): subparsers.add_parser('clean', help="Delete all temporary build files.") dashboard = subparsers.add_parser('dashboard', - help="Create a simple webserver for a dashboard.") + help="Create a simple web server for a dashboard.") dashboard.add_argument("--port", help="The HTTP port to open connections on.", type=int, default=6052) dashboard.add_argument("--password", help="The optional password to require for all requests.", diff --git a/esphomeyaml/components/wifi.py b/esphomeyaml/components/wifi.py index 0a95bd6040..125ccb6711 100644 --- a/esphomeyaml/components/wifi.py +++ b/esphomeyaml/components/wifi.py @@ -83,7 +83,7 @@ CONFIG_SCHEMA = vol.All(vol.Schema({ vol.Optional(CONF_MANUAL_IP): STA_MANUAL_IP_SCHEMA, vol.Optional(CONF_AP): WIFI_NETWORK_AP, vol.Optional(CONF_HOSTNAME): cv.hostname, - vol.Optional(CONF_DOMAIN, default='.local'): cv.domainname, + vol.Optional(CONF_DOMAIN, default='.local'): cv.domain_name, vol.Optional(CONF_REBOOT_TIMEOUT): cv.positive_time_period_milliseconds, vol.Optional(CONF_POWER_SAVE_MODE): vol.All(vol.Upper, cv.one_of(*WIFI_POWER_SAVE_MODES)), }), validate) diff --git a/esphomeyaml/config_validation.py b/esphomeyaml/config_validation.py index 980f8c125b..09a30dab6b 100644 --- a/esphomeyaml/config_validation.py +++ b/esphomeyaml/config_validation.py @@ -440,15 +440,15 @@ def hostname(value): return value -def domainname(value): +def domain_name(value): value = string(value) if not value.startswith('.'): - raise vol.Invalid("Domainname must start with .") + raise vol.Invalid("Domain name must start with .") if value.startswith('..'): - raise vol.Invalid("Domainname must start with single .") + raise vol.Invalid("Domain name must start with single .") for c in value: if not (c.isalnum() or c in '._-'): - raise vol.Invalid("Domainname can only have alphanumeric characters and _ or -") + raise vol.Invalid("Domain name can only have alphanumeric characters and _ or -") return value diff --git a/esphomeyaml/dashboard/templates/index.html b/esphomeyaml/dashboard/templates/index.html index 7044e9f628..ccb231ab9c 100644 --- a/esphomeyaml/dashboard/templates/index.html +++ b/esphomeyaml/dashboard/templates/index.html @@ -52,12 +52,6 @@ padding-bottom: 10px; } - .chip { - height: 26px; - font-size: 12px; - line-height: 26px; - } - .log { background-color: #1c1c1c; margin-top: 0;