management: Fix delete_old_unclaimed_attachments.

This commit is contained in:
Tim Abbott
2020-06-05 17:06:19 -07:00
parent 5cb1edcadc
commit 42f1cb3444

View File

@@ -15,7 +15,8 @@ class Command(BaseCommand):
def add_arguments(self, parser: ArgumentParser) -> None:
parser.add_argument('-w', '--weeks',
dest='delta_weeks',
default=1,
default=5,
type=int,
help="Limiting value of how old the file can be.")
parser.add_argument('-f', '--for-real',
@@ -26,13 +27,12 @@ class Command(BaseCommand):
def handle(self, *args: Any, **options: Any) -> None:
delta_weeks = options['delta_weeks']
print("Deleting unclaimed attached files older than %s" % (delta_weeks,))
print("")
print("Deleting unclaimed attached files older than %s weeks" % (delta_weeks,))
# print the list of files that are going to be removed
old_attachments = get_old_unclaimed_attachments(delta_weeks)
for old_attachment in old_attachments:
print("%s created at %s" % (old_attachment.file_name, old_attachment.create_time))
print("* %s created at %s" % (old_attachment.file_name, old_attachment.create_time))
print("")
if not options["for_real"]: