From 4c07c5e47e5119acc518e7dd3130452247b99602 Mon Sep 17 00:00:00 2001 From: Joachim Date: Sun, 9 Jan 2022 12:11:52 +0100 Subject: [PATCH] Add end message for populate_list_streams command --- bookwyrm/management/commands/populate_lists_streams.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bookwyrm/management/commands/populate_lists_streams.py b/bookwyrm/management/commands/populate_lists_streams.py index c08b36d5..e3c30bab 100644 --- a/bookwyrm/management/commands/populate_lists_streams.py +++ b/bookwyrm/management/commands/populate_lists_streams.py @@ -14,6 +14,7 @@ def populate_lists_streams(): for user in users: print(".", end="") lists_stream.populate_lists_task.delay(user.id) + print("\nAll done, thank you for your patience!") class Command(BaseCommand):