From 6c4e044c92c2733972698c7b5675fa9079dc9ea4 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 7 Feb 2015 22:52:36 -0800 Subject: [PATCH] Enable history component instead of recorder by default --- homeassistant/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/__main__.py b/homeassistant/__main__.py index cd4a98e5967..05de14dbefc 100644 --- a/homeassistant/__main__.py +++ b/homeassistant/__main__.py @@ -80,7 +80,7 @@ def ensure_config_path(config_dir): with open(config_path, 'w') as conf: conf.write("[frontend]\n\n") conf.write("[discovery]\n\n") - conf.write("[recorder]\n\n") + conf.write("[history]\n\n") except IOError: print(('Fatal Error: No configuration file found and unable ' 'to write a default one to {}').format(config_path))