From f88cf99b6757ef3cf323b5894c6262edf22ae4f8 Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Thu, 15 Nov 2018 10:13:32 +0100 Subject: [PATCH] Cleanup git auto-update --- esphomeyaml/core_config.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/esphomeyaml/core_config.py b/esphomeyaml/core_config.py index 16405c5fc1..cbeea9e486 100644 --- a/esphomeyaml/core_config.py +++ b/esphomeyaml/core_config.py @@ -239,10 +239,7 @@ def update_esphomelib_repo(config): if rc != 0: _LOGGER.warn("Couldn't auto-update local git copy of esphomelib.") return - stdout = stdout.strip() - if 'Already up to date' in stdout: - return - safe_print(stdout) + safe_print(stdout.strip()) def to_code(config):