From 66df16eb78a1deda2aee44869e6ecaee063c49c0 Mon Sep 17 00:00:00 2001 From: Joel Bradshaw Date: Fri, 17 Dec 2021 06:14:52 +0000 Subject: [PATCH] Fix typo while we're here --- bookwyrm/management/commands/populate_streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/management/commands/populate_streams.py b/bookwyrm/management/commands/populate_streams.py index a04d7f5ad..0b09ea6cb 100644 --- a/bookwyrm/management/commands/populate_streams.py +++ b/bookwyrm/management/commands/populate_streams.py @@ -6,7 +6,7 @@ from bookwyrm import activitystreams, models def populate_streams(stream=None): """build all the streams for all the users""" streams = [stream] if stream else activitystreams.streams.keys() - print("Populations streams", streams) + print("Populating streams", streams) users = models.User.objects.filter( local=True, is_active=True,