1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-12 08:12:22 +01:00

Add details when error loading package (#5603)

This commit is contained in:
dentra
2023-10-26 23:27:42 +03:00
committed by GitHub
parent 6b8a75d3b8
commit f6e8d97981

View File

@@ -135,7 +135,7 @@ def _process_base_package(config: dict) -> dict:
packages[file] = new_yaml
except EsphomeError as e:
raise cv.Invalid(
f"{file} is not a valid YAML file. Please check the file contents."
f"{file} is not a valid YAML file. Please check the file contents.\n{e}"
) from e
return packages