From ea735fd57092a0f798a505eb83c9d9061040888b Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sun, 22 Mar 2020 15:28:56 -0700 Subject: [PATCH] Quotes around titles in shelve notifications --- fedireads/outgoing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedireads/outgoing.py b/fedireads/outgoing.py index 78eea77b..b47f0fcd 100644 --- a/fedireads/outgoing.py +++ b/fedireads/outgoing.py @@ -134,7 +134,7 @@ def handle_shelve(user, book, shelf): 'reading': 'started reading', 'read': 'finished reading' }[shelf.identifier] - message = '%s %s' % (verb, book.title) + message = '%s "%s"' % (verb, book.title) status = create_status(user, message, mention_books=[book]) status.status_type = 'Update' status.save()