From af5eacf30372931aef0fb70c3ca201907878774f Mon Sep 17 00:00:00 2001 From: Phil Frost Date: Mon, 29 Oct 2018 14:40:32 -0400 Subject: [PATCH] Fix spelling error in log output (#17963) --- homeassistant/components/recorder/migration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/recorder/migration.py b/homeassistant/components/recorder/migration.py index 7b257e223db..45c8f939faf 100644 --- a/homeassistant/components/recorder/migration.py +++ b/homeassistant/components/recorder/migration.py @@ -74,7 +74,7 @@ def _create_index(engine, table_name, index_name): if 'already exists' not in str(err).lower(): raise - _LOGGER.warning('Index %s already exists on %s, continueing', + _LOGGER.warning('Index %s already exists on %s, continuing', index_name, table_name) _LOGGER.debug("Finished creating %s", index_name) @@ -157,7 +157,7 @@ def _add_columns(engine, table_name, columns_def): return except OperationalError: # Some engines support adding all columns at once, - # this error is when they dont' + # this error is when they don't _LOGGER.info('Unable to use quick column add. Adding 1 by 1.') for column_def in columns_def: