From 9f6918767b97a45d55869723ad6790e850f7be56 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Wed, 29 Dec 2021 17:41:31 -0800 Subject: [PATCH] Corrects documentation on sort order --- bookwyrm/lists_stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/lists_stream.py b/bookwyrm/lists_stream.py index 6c353545..8609a4d1 100644 --- a/bookwyrm/lists_stream.py +++ b/bookwyrm/lists_stream.py @@ -16,7 +16,7 @@ class ListsStream(RedisStore): return f"{user.id}-lists" def get_rank(self, obj): # pylint: disable=no-self-use - """lists are sorted by date published""" + """lists are sorted by updated date""" return obj.updated_date.timestamp() def add_list(self, book_list):