Skip to content
Snippets Groups Projects
Verified Commit 2204f23f authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix format string.

parent 433c7f37
No related branches found
No related tags found
No related merge requests found
......@@ -276,7 +276,7 @@ def person_borrow(request: HttpRequest) -> HttpResponse:
book_copy.borrower = person
book_copy.save()
messages.success(request, _('Book %s borrowed to %s.') % book_copy.book.title)
messages.success(request, _('Book %s borrowed to %s.') % (book_copy.book.title, person))
person_borrow_form = PersonBorrowForm()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment