File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -326,7 +326,7 @@ def _need_checksum(local_filepath):
326
326
if uuid_from_file (local_filepath ) != contents_hash :
327
327
# this should never happen without outside interference
328
328
raise DataJointError (
329
- f"'{ local_filepath } ' downloaded but did not pass checksum' "
329
+ f"'{ local_filepath } ' downloaded but did not pass checksum. "
330
330
)
331
331
if not _need_checksum (local_filepath ):
332
332
logger .warning (
@@ -335,7 +335,7 @@ def _need_checksum(local_filepath):
335
335
if size != Path (local_filepath ).stat ().st_size :
336
336
# this should never happen without outside interference
337
337
raise DataJointError (
338
- f"'{ local_filepath } ' downloaded but size is not the same (skipped checksum due to config)' "
338
+ f"'{ local_filepath } ' downloaded but size is not the same (skipped checksum due to config). "
339
339
)
340
340
return str (local_filepath ), contents_hash
341
341
You can’t perform that action at this time.
0 commit comments