Quotes around titles in shelve notifications
This commit is contained in:
parent
eac8f2a2f9
commit
ea735fd570
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue