Quotes around titles in shelve notifications

This commit is contained in:
Mouse Reeve 2020-03-22 15:28:56 -07:00
parent eac8f2a2f9
commit ea735fd570

View file

@ -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()