From f9c17f01afe90fd6880bcac2b458dc3f02daf8e8 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Tue, 26 Apr 2005 15:45:51 +0000 Subject: [PATCH] spelling fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9880 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/lyx2lyx/ChangeLog | 1 + lib/lyx2lyx/lyx_1_4.py | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/lyx2lyx/ChangeLog b/lib/lyx2lyx/ChangeLog index 55ba52efc5..d9d81782c1 100644 --- a/lib/lyx2lyx/ChangeLog +++ b/lib/lyx2lyx/ChangeLog @@ -1,5 +1,6 @@ 2005-04-26 Georg Baum + * lyx_1_4.py (convert_breaks): fix spelling * lyx_1_4.py (convert_breaks): fix copy-and-paste error 2005-02-20 Georg Baum diff --git a/lib/lyx2lyx/lyx_1_4.py b/lib/lyx2lyx/lyx_1_4.py index 125086ee27..7491dcad53 100644 --- a/lib/lyx2lyx/lyx_1_4.py +++ b/lib/lyx2lyx/lyx_1_4.py @@ -585,21 +585,21 @@ def convert_breaks(file): if pb_bot !=-1 or line_bot != -1 or vspace_bot != -1: - paragraph_bellow = ['','\\begin_layout Standard','',''] + paragraph_below = ['','\\begin_layout Standard','',''] if line_bot != -1: - paragraph_bellow.extend(['\\lyxline ','']) + paragraph_below.extend(['\\lyxline ','']) if vspace_bot != -1: - paragraph_bellow.extend(['\\begin_inset VSpace ' + vspace_bot_value,'\\end_inset','','']) + paragraph_below.extend(['\\begin_inset VSpace ' + vspace_bot_value,'\\end_inset','','']) if pb_bot != -1: - paragraph_bellow.extend(['\\newpage ','']) + paragraph_below.extend(['\\newpage ','']) - paragraph_bellow.extend(['\\end_layout','']) + paragraph_below.extend(['\\end_layout','']) #inset new paragraph above the current paragraph - file.body[k + 1: k + 1] = paragraph_bellow + file.body[k + 1: k + 1] = paragraph_below ## -- 2.39.2