From 10bbc3d6e1dc98ef942574a24b8c7c3a3cfc6485 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 31 Jan 2015 19:52:00 -0800 Subject: [PATCH] Default config: add recorder --- homeassistant/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/__main__.py b/homeassistant/__main__.py index e4ee9a51fab..cd4a98e5967 100644 --- a/homeassistant/__main__.py +++ b/homeassistant/__main__.py @@ -80,6 +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") except IOError: print(('Fatal Error: No configuration file found and unable ' 'to write a default one to {}').format(config_path))