From 4948ad95b0c4ca57d4c8b98002b370dafcb8a4ed Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Wed, 2 Jan 2019 18:24:20 +0100 Subject: [PATCH] Lint --- esphomeyaml/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphomeyaml/__main__.py b/esphomeyaml/__main__.py index dfe3c58ea5..2009e2d28f 100644 --- a/esphomeyaml/__main__.py +++ b/esphomeyaml/__main__.py @@ -152,7 +152,7 @@ def write_cpp(config): def compile_program(args, config): _LOGGER.info("Compiling app...") - update_check = not os.getenv('ESPHOMEYAML_NO_UPDATE_CHECK', False) + update_check = not os.getenv('ESPHOMEYAML_NO_UPDATE_CHECK', '') if update_check: thread = start_update_check_thread(esphomeyaml_storage_path(CORE.config_dir)) rc = platformio_api.run_compile(config, args.verbose)