We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10a5868 commit 3ce21f5Copy full SHA for 3ce21f5
datajoint/external.py
@@ -329,7 +329,9 @@ def _need_checksum(local_filepath):
329
f"'{local_filepath}' downloaded but did not pass checksum'"
330
)
331
if not _need_checksum(local_filepath):
332
- logger.warning(f"Skipped checksum for file with hash: {contents_hash}")
+ logger.warning(
333
+ f"Skipped checksum for file with hash: {contents_hash}, and path: {local_filepath}"
334
+ )
335
if size != Path(local_filepath).stat().st_size:
336
# this should never happen without outside interference
337
raise DataJointError(
0 commit comments