mirror of
https://github.com/esphome/esphome.git
synced 2025-03-19 09:08:16 +00:00
Fix external components not refreshing with default or high refresh time (#2122)
This commit is contained in:
parent
dd637582a4
commit
eeaba74553
@ -147,7 +147,7 @@ def _process_git_config(config: dict, refresh) -> str:
|
|||||||
age = datetime.datetime.now() - datetime.datetime.fromtimestamp(
|
age = datetime.datetime.now() - datetime.datetime.fromtimestamp(
|
||||||
file_timestamp.stat().st_mtime
|
file_timestamp.stat().st_mtime
|
||||||
)
|
)
|
||||||
if age.seconds > refresh.total_seconds:
|
if age.total_seconds() > refresh.total_seconds:
|
||||||
_LOGGER.info("Updating %s", key)
|
_LOGGER.info("Updating %s", key)
|
||||||
_LOGGER.debug("Location: %s", repo_dir)
|
_LOGGER.debug("Location: %s", repo_dir)
|
||||||
# Stash local changes (if any)
|
# Stash local changes (if any)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user