Fix version printing not breaking yaml parsing (#4904)

This commit is contained in:
Jesse Hills 2023-05-29 09:18:01 +12:00
parent b723728177
commit 69f5674d9e
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

@ -932,7 +932,7 @@ def run_esphome(argv):
_LOGGER.error(e, exc_info=args.verbose)
return 1
safe_print(f"ESPHome {const.__version__}")
_LOGGER.info("ESPHome %s", const.__version__)
for conf_path in args.configuration:
if any(os.path.basename(conf_path) == x for x in SECRETS_FILES):