mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix literal string in binary context
In1a26f9b26c
, all strings in the context of regexes and comparisons have been converted to byte-like objects for python2/3 compatibility reasons. This has not been considered in the later commit5c54557350
, which makes layout2layout break with TypeError: can't concat str to bytes.
This commit is contained in:
parent
aaf17b08a8
commit
8fecdfc473
@ -471,7 +471,7 @@ def convert(lines, end_format):
|
||||
re_trimEndLabelString, re_trimLabelCounter):
|
||||
m = r.match(lines[i])
|
||||
if m:
|
||||
lines[i] = m.group(1) + '"' + m.group(2) + '"'
|
||||
lines[i] = m.group(1) + b'"' + m.group(2) + b'"'
|
||||
i += 1
|
||||
continue
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user