X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/886286a97f29204af33d0061ae51eb1b19ec0441..8132fc186eb0c5fd02c86828c3a4735754296d02:/apps/cover/views.py diff --git a/apps/cover/views.py b/apps/cover/views.py index bbcf28e5..3f2c46fa 100644 --- a/apps/cover/views.py +++ b/apps/cover/views.py @@ -41,7 +41,7 @@ def preview(request, book, chunk=None, rev=None): xml = revision.materialize().encode('utf-8') try: - info = BookInfo.from_string(xml) + info = BookInfo.from_bytes(xml) except: return HttpResponseRedirect(os.path.join(settings.STATIC_URL, "img/sample_cover.png")) cover = make_cover(info) @@ -63,7 +63,7 @@ def preview_from_xml(request): xml = request.POST['xml'] try: - info = BookInfo.from_string(xml.encode('utf-8')) + info = BookInfo.from_bytes(xml.encode('utf-8')) except: return HttpResponse(os.path.join(settings.STATIC_URL, "img/sample_cover.png")) coverid = sha1(etree.tostring(info.to_etree())).hexdigest()