From: Richard Heck Date: Tue, 5 Aug 2008 14:33:42 +0000 (+0000) Subject: Fix bug 5122. Silly mistake. X-Git-Tag: 1.6.10~3733 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=be3171e15ef234837006cf088ac81a1e628323e2;p=features.git Fix bug 5122. Silly mistake. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26066 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/lyx_1_6.py b/lib/lyx2lyx/lyx_1_6.py index 9b6aab9e17..a3c3af060b 100644 --- a/lib/lyx2lyx/lyx_1_6.py +++ b/lib/lyx2lyx/lyx_1_6.py @@ -663,7 +663,7 @@ def revert_long_charstyle_names(document): i = find_token(document.body, "\\begin_inset CharStyle", i) if i == -1: return - document.body[i] = document.body[i].replace("CharStyle CharStyle:", "CharStyle") + document.body[i] = document.body[i].replace("CharStyle CharStyle:", "CharStyle ") i += 1