Fix Python unicode string in lyx2lyx

This commit amends 586d16a4.
This commit is contained in:
Scott Kostyshak 2017-12-23 21:42:43 -05:00
parent 3f7e00b661
commit b7983478e1

View File

@ -1875,7 +1875,7 @@ def convert_dashligatures(document):
flags=re.UNICODE):
has_literal_dashes = True
# ligature dash followed by word or no-break space on next line:
if re.search(ur"(\\twohyphens|\\threehyphens)", line,
if re.search(u"(\\twohyphens|\\threehyphens)", line,
flags=re.UNICODE) and re.match(u"[\w\u00A0]",
document.body[i+1], flags=re.UNICODE):
has_ligature_dashes = True