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
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ def handle_shelve(user, book, shelf):
'reading': 'started reading', 'reading': 'started reading',
'read': 'finished reading' 'read': 'finished reading'
}[shelf.identifier] }[shelf.identifier]
message = '%s %s' % (verb, book.title) message = '%s "%s"' % (verb, book.title)
status = create_status(user, message, mention_books=[book]) status = create_status(user, message, mention_books=[book])
status.status_type = 'Update' status.status_type = 'Update'
status.save() status.save()