Adjust info message

This commit is contained in:
Ines Montani 2020-09-11 09:57:00 +02:00
parent 6831161bfa
commit 761bd60d43
1 changed files with 3 additions and 1 deletions

View File

@ -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():