From 6878fc254a3bf65d69e395af8cf9f6b7bf6d72ad Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 30 Jan 2015 08:28:04 -0800 Subject: [PATCH] Add frontend to default config --- homeassistant/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/__main__.py b/homeassistant/__main__.py index 2b48882712c..e4ee9a51fab 100644 --- a/homeassistant/__main__.py +++ b/homeassistant/__main__.py @@ -78,7 +78,7 @@ def ensure_config_path(config_dir): if not os.path.isfile(config_path): try: with open(config_path, 'w') as conf: - conf.write("[http]\n\n") + conf.write("[frontend]\n\n") conf.write("[discovery]\n\n") except IOError: print(('Fatal Error: No configuration file found and unable '