Skip to content

Commit db88a88

Browse files
committed
spelling: withdrawn
Signed-off-by: Josh Soref <[email protected]>
1 parent 4dfd8f3 commit db88a88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osf/management/commands/delete_withdrawn_or_failed_registration_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def mark_withdrawn_files_as_deleted(batch_size, dry_run=False):
2121
for node in withdrawn_registrations.annotate(fc=Count('files')).filter(fc__gte=1)[:batch_size]:
2222
files_to_be_deleted = node.files.all()
2323
logger.info(
24-
f'{"[DRY-RUN]" if dry_run else ""} There are {files_to_be_deleted.count()} files deleted from withrawn node ({node._id})')
24+
f'{"[DRY-RUN]" if dry_run else ""} There are {files_to_be_deleted.count()} files deleted from withdrawn node ({node._id})')
2525
for file in files_to_be_deleted:
2626
if not dry_run:
2727
file.delete()

0 commit comments

Comments
 (0)