Make sure model_path is a Posix path

Otherwise, formatting the success message with model_path.as_posix()
fails when using a local path for linking (linking still works, but the
error message is confusing)
This commit is contained in:
ines 2017-03-19 11:57:13 +01:00
parent fe0ff00fe1
commit b8f8d5d8bf

View File

@ -28,6 +28,7 @@ def link_package(package_name, link_name, force=False):
def symlink(model_path, link_name, force):
model_path = Path(model_path)
if not Path(model_path).exists():
util.sys_exit(
"The data should be located in {p}".format(p=model_path),