From 9743fc5ee6a6ea8e98d3d1ee3fcf9b875ef19ff4 Mon Sep 17 00:00:00 2001 From: Adriaan Peeters Date: Sun, 26 Aug 2018 12:28:04 +0200 Subject: [PATCH] Introduce parser_compile variable --- esphomeyaml/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphomeyaml/__main__.py b/esphomeyaml/__main__.py index 601cd49565..ec608b3e6d 100644 --- a/esphomeyaml/__main__.py +++ b/esphomeyaml/__main__.py @@ -380,7 +380,7 @@ def parse_args(argv): subparsers.required = True subparsers.add_parser('config', help='Validate the configuration and spit it out.') - subparsers.add_parser('compile', help='Read the configuration and compile a program.') + parser_compile = subparsers.add_parser('compile', help='Read the configuration and compile a program.') parser_upload = subparsers.add_parser('upload', help='Validate the configuration ' 'and upload the latest binary.')