1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 08:41:59 +00:00

Don't rebuild build_time_str

It's already in the JSON now
This commit is contained in:
David Woodhouse
2025-12-15 15:44:12 +00:00
parent bc5444cbe1
commit d83fd263b0

View File

@@ -550,15 +550,14 @@ def _check_and_emit_build_info() -> None:
return
config_hash = build_info.get("config_hash")
build_time = build_info.get("build_time")
build_time_str = build_info.get("build_time_str")
if config_hash is None or build_time is None:
if config_hash is None or build_time_str is None:
return
# Emit build_info with human-readable time
build_time_str = time.strftime("%b %d %Y, %H:%M:%S", time.localtime(build_time))
_LOGGER.info(
"Build Info: config_hash=0x%08x build_time=%s", config_hash, build_time_str
"Build Info: config_hash=0x%08x build_time_str=%s", config_hash, build_time_str
)