From 7be8a0516a667ec098adffa306cc93cec2b20083 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 3 Sep 2020 18:54:03 +0200 Subject: [PATCH] Fix project pull --- spacy/cli/project/pull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/project/pull.py b/spacy/cli/project/pull.py index 6c0f32171..7b597141f 100644 --- a/spacy/cli/project/pull.py +++ b/spacy/cli/project/pull.py @@ -38,5 +38,5 @@ def project_pull(project_dir: Path, remote: str, *, verbose: bool = False): url = storage.pull(output_path, command_hash=cmd_hash) yield url, output_path - if cmd.get("outptus") and all(loc.exists() for loc in cmd["outputs"]): + if cmd.get("outputs") and all(loc.exists() for loc in cmd["outputs"]): update_lockfile(project_dir, cmd)