summaryrefslogtreecommitdiff
path: root/kvmd/yamlconf
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2021-04-17 17:44:48 +0300
committerDevaev Maxim <[email protected]>2021-04-17 17:44:48 +0300
commit19c4c7d1e3f11e1682c72336df06426d9b7608a5 (patch)
tree14fad7f5b75714152e8ce7f07ae0654c0a83ebb5 /kvmd/yamlconf
parent5dea266895f2dac364e81e83e5ef635d1b8c1466 (diff)
clean yaml error message
Diffstat (limited to 'kvmd/yamlconf')
-rw-r--r--kvmd/yamlconf/loader.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/kvmd/yamlconf/loader.py b/kvmd/yamlconf/loader.py
index 20ff7c93..2acff93f 100644
--- a/kvmd/yamlconf/loader.py
+++ b/kvmd/yamlconf/loader.py
@@ -28,15 +28,17 @@ from typing import Any
import yaml
import yaml.nodes
+from .. import tools
+
# =====
def load_yaml_file(path: str) -> Any:
with open(path) as yaml_file:
try:
return yaml.load(yaml_file, _YamlLoader)
- except Exception:
+ except Exception as err:
# Reraise internal exception as standard ValueError and show the incorrect file
- raise ValueError(f"Incorrect YAML syntax in file {path!r}")
+ raise ValueError(f"Invalid YAML in the file {path!r}:\n{tools.efmt(err)}") from None
class _YamlLoader(yaml.SafeLoader):