Was forgetting this.

(cherry picked from commit 92c4bb4682)
This commit is contained in:
Enrico Forestieri 2020-03-22 22:03:49 +01:00
parent 51b8778c73
commit 877d296b78
2 changed files with 3 additions and 1 deletions

View File

@ -111,7 +111,7 @@ def legacy_extract_metrics_info(log_file):
if match == None:
continue
snippet = (match.group(1) == 'S')
snippet = (match.group(1) == b'S')
success = 1
match = data_re.search(line)
if match == None:

View File

@ -137,6 +137,8 @@ What's new
- Disable PDF bookmarksopen level widget if booksmarksopen is false
(bug 11289).
- Fix encoding issues with python 3 when generating preview snippets.
* INTERNALS