From 761bd60d43748c5b85399d5c1a484f188c6a08de Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Fri, 11 Sep 2020 09:57:00 +0200 Subject: [PATCH] Adjust info message --- spacy/cli/project/assets.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spacy/cli/project/assets.py b/spacy/cli/project/assets.py index 6f23f0e0a..cb3a2fb99 100644 --- a/spacy/cli/project/assets.py +++ b/spacy/cli/project/assets.py @@ -44,7 +44,9 @@ def project_assets(project_dir: Path) -> None: if dest.exists(): # If there's already a file, check for checksum if checksum and checksum == get_checksum(dest): - msg.good(f"Skipping download with matching checksum: {dest}") + msg.good( + f"Skipping download with matching checksum: {asset['dest']}" + ) continue else: if dest.is_dir():