From 7e4cbda89ac86cb2e45701c8335f7bfb9f8f4e33 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Tue, 30 Jun 2020 11:09:53 +0200 Subject: [PATCH] fix project_init for relative path --- spacy/cli/project.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacy/cli/project.py b/spacy/cli/project.py index 16e87cb40..4588e3336 100644 --- a/spacy/cli/project.py +++ b/spacy/cli/project.py @@ -284,8 +284,8 @@ def project_init( # opt-in explicitly. If they want it, they can always enable it. if not analytics: run_command(["dvc", "config", "core.analytics", "false"]) - config = load_project_config(project_dir) - setup_check_dvc(project_dir, config) + config = load_project_config(project_dir) + setup_check_dvc(project_dir, config) def project_assets(project_dir: Path) -> None: