From: José Matox Date: Tue, 17 Jul 2007 11:53:46 +0000 (+0000) Subject: Old lyx files (from 1.0 era) can start with a begin deeper X-Git-Tag: 1.6.10~9124 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=95cf1d65f3c8d00fcd74986079cc1b9b33870192;p=features.git Old lyx files (from 1.0 era) can start with a begin deeper git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19097 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/LyX.py b/lib/lyx2lyx/LyX.py index 0a9e44c6d8..f6b5d051af 100644 --- a/lib/lyx2lyx/LyX.py +++ b/lib/lyx2lyx/LyX.py @@ -228,7 +228,7 @@ class LyX_Base: if not line: continue - if line.split()[0] in ("\\layout", "\\begin_layout", "\\begin_body"): + if line.split()[0] in ("\\layout", "\\begin_layout", "\\begin_body", "\\begin_deeper"): self.body.append(line) break