X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d1d6ea8ed2889f871b6d89d4fae6021f286f921a..d25a3a166a0ec2e730a126c23f8855876384607c:/src/pdcounter/views.py diff --git a/src/pdcounter/views.py b/src/pdcounter/views.py index 3be24c0a6..5e3f3be7c 100644 --- a/src/pdcounter/views.py +++ b/src/pdcounter/views.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # @@ -17,7 +16,7 @@ def book_stub_detail(request, slug): else: pd_counter = None - form = PublishingSuggestForm(initial={"books": u"%s — %s, \n" % (book.author, book.title)}) + form = PublishingSuggestForm(initial={"books": "%s — %s, \n" % (book.author, book.title)}) return render(request, 'pdcounter/book_stub_detail.html', { 'book': book,