Edit book: Fix a regression in the previous release that broke the Insert Inline Table of Contents tool. Fixes #1897229 [bug with insert inline toc](https://bugs.launchpad.net/calibre/+bug/1897229)

This commit is contained in:
Kovid Goyal 2020-09-25 13:28:47 +05:30
parent 011bba1a58
commit 99680529d3
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -839,7 +839,7 @@ def toc_to_html(toc, container, toc_name, title, lang=None):
html = E.html(
E.head(
E.title(title),
E.style(P('templates/inline_toc_styles.css', data=True), type='text/css'),
E.style(P('templates/inline_toc_styles.css', data=True).decode('utf-8'), type='text/css'),
),
E.body(
E.h2(title),