mirror of https://github.com/explosion/spaCy.git
Adjust info message
This commit is contained in:
parent
6831161bfa
commit
761bd60d43
|
@ -44,7 +44,9 @@ def project_assets(project_dir: Path) -> None:
|
||||||
if dest.exists():
|
if dest.exists():
|
||||||
# If there's already a file, check for checksum
|
# If there's already a file, check for checksum
|
||||||
if checksum and checksum == get_checksum(dest):
|
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
|
continue
|
||||||
else:
|
else:
|
||||||
if dest.is_dir():
|
if dest.is_dir():
|
||||||
|
|
Loading…
Reference in New Issue