X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/cad95a5f21346628d1dffa3b50ffa8f38baa5972..967eed676fc83d15b26149047f353ac61faa8217:/src/picture/tasks.py diff --git a/src/picture/tasks.py b/src/picture/tasks.py index cae7db7a6..e80b0fc77 100644 --- a/src/picture/tasks.py +++ b/src/picture/tasks.py @@ -14,10 +14,10 @@ def generate_picture_html(picture_id): import picture.models pic = picture.models.Picture.objects.get(pk=picture_id) - html_text = unicode(render_to_string('picture/picture_info.html', { + html_text = render_to_string('picture/picture_info.html', { 'things': pic.areas_json['things'], 'themes': pic.areas_json['themes'], - })) + }) pic.html_file.save("%s.html" % pic.slug, ContentFile(html_text)) @@ -26,7 +26,7 @@ def index_picture(picture_id, picture_info=None, **kwargs): from picture.models import Picture try: return Picture.objects.get(id=picture_id).search_index(picture_info, **kwargs) - except Exception, e: - print "Exception during index: %s" % e + except Exception as e: + print("Exception during index: %s" % e) print_exc() raise e