Browse Source

Adds success message

Mouse Reeve 9 months ago
parent
commit
01db77a745
1 changed files with 3 additions and 0 deletions
  1. 3 0
      bookwyrm/management/commands/erase_deleted_user_data.py

+ 3 - 0
bookwyrm/management/commands/erase_deleted_user_data.py

@@ -38,3 +38,6 @@ class Command(BaseCommand):
         for user_id in deleted_users.values_list("id", flat=True):
             erase_user_data.delay(user_id)
             self.stdout.write(".", ending="")
+
+        self.stdout.write("")
+        self.stdout.write("Tasks created successfully")