From 2421f91530ed593c368b096cb2bd686c87fe51da Mon Sep 17 00:00:00 2001 From: Dekel Tsur Date: Wed, 28 Aug 2002 12:02:55 +0000 Subject: [PATCH] Don't use .extend() (doesn't work in python 1.5) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5133 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/lyx2lyx/lyxconvert_217.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/lyx2lyx/lyxconvert_217.py b/lib/lyx2lyx/lyxconvert_217.py index 4a389fecc6..876604ed2c 100644 --- a/lib/lyx2lyx/lyxconvert_217.py +++ b/lib/lyx2lyx/lyxconvert_217.py @@ -41,10 +41,7 @@ def update_tabular(lines): break new_table = table_update(lines[i:j]) - tail = lines[j:] - lines[i:] = [] - lines.extend(new_table) - lines.extend(tail) + lines = lines[:i] + new_table + lines[j:] i = i + len(new_table) col_re = re.compile(r'') -- 2.39.2