From 5c53a76021775b2ed4cb6904c132f6e7780c7dc4 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 27 Sep 2020 22:39:04 +0200 Subject: [PATCH] Improve CLI error handling [ci skip] --- spacy/cli/_util.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spacy/cli/_util.py b/spacy/cli/_util.py index 68cb572ea..f4a31d68b 100644 --- a/spacy/cli/_util.py +++ b/spacy/cli/_util.py @@ -258,8 +258,10 @@ def show_validation_error( ) print(f"{COMMAND} init fill-config {config_path} --base {config_path}\n") sys.exit(1) - except InterpolationError as e: - msg.fail("Config validation error", e, exits=1) + except Exception as e: + msg.fail("Error while loading the config") + print(e) + sys.exit(1) def import_code(code_path: Optional[Union[Path, str]]) -> None: