From 17c9fffb9e1a5318cc9e5de320f1ea38d51ee1a9 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 16 Apr 2017 15:28:16 -0500 Subject: [PATCH] Fix naked except --- spacy/cli/link.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spacy/cli/link.py b/spacy/cli/link.py index e5d590e5a..f2d2fd436 100644 --- a/spacy/cli/link.py +++ b/spacy/cli/link.py @@ -48,7 +48,7 @@ def symlink(model_path, link_name, force): except: # This is quite dirty, but just making sure other errors are caught so # users at least see a proper message. - util.sys_exit( + util.print_msg( "Creating a symlink in spacy/data failed. Make sure you have the " "required permissions and try re-running the command as admin, or " "use a virtualenv to install spaCy in a user directory, instead of " @@ -57,6 +57,7 @@ def symlink(model_path, link_name, force): "load() method, or create the symlink manually:", "{a} --> {b}".format(a=unicode_(model_path), b=unicode_(link_path)), title="Error: Couldn't link model to '{l}'".format(l=link_name)) + raise util.print_msg( "{a} --> {b}".format(a=model_path.as_posix(), b=link_path.as_posix()),