From 424f05a4daec336356e9f5244b64baa979915f69 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 24 Apr 2015 08:47:11 -0700 Subject: [PATCH] Add logbook to default configuration --- homeassistant/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/__main__.py b/homeassistant/__main__.py index 13703dee416..c5e775bd9f9 100644 --- a/homeassistant/__main__.py +++ b/homeassistant/__main__.py @@ -85,6 +85,7 @@ def ensure_config_path(config_dir): conf.write("frontend:\n\n") conf.write("discovery:\n\n") conf.write("history:\n\n") + conf.write("logbook:\n\n") except IOError: print(('Fatal Error: No configuration file found and unable ' 'to write a default one to {}').format(config_path))