Skip to content

Commit f6cfad7

Browse files
committed
Added message about file already existsing
1 parent e3ad668 commit f6cfad7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

nipype/interfaces/io.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@ def _upload_to_s3(self, src, dst):
584584
src_md5 = hashlib.md5(src_read).hexdigest()
585585
# Move to next loop iteration
586586
if dst_md5 == src_md5:
587+
iflogger.info('File %s already exists on S3, skipping...' % dst_f)
587588
continue
588589
else:
589590
iflogger.info('Overwriting previous S3 file...')

0 commit comments

Comments
 (0)