From 673e65cc15166a42f0adb232b412c114473de7af Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Tue, 6 Jul 2010 14:38:10 +0000 Subject: [PATCH] Off by one here. Left an extra \begin_layout line. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34786 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/lyx2lyx/lyx_2_0.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lyx2lyx/lyx_2_0.py b/lib/lyx2lyx/lyx_2_0.py index 966ec68be8..2a26029db4 100644 --- a/lib/lyx2lyx/lyx_2_0.py +++ b/lib/lyx2lyx/lyx_2_0.py @@ -1846,7 +1846,7 @@ def revert_makebox(document): length = latex_length(length).split(",")[1] subst = "\\makebox[" + length + "][" \ + align + "]{" - document.body[i:i + 13] = put_cmd_in_ert(subst) + document.body[i:i + 14] = put_cmd_in_ert(subst) i += 1 -- 2.39.2