One line fix for an out of range error.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8398 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2004-02-03 19:49:44 +00:00
parent 62e4adaef2
commit 001d4025e9
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-02-03 Jos& Matos <jamatos@lyx.org>
* lyxconvert216.py: one line fix for out of range error.
2004-02-01 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* lyxconvert2*.py: quiet encoding warning in python 2.3

View File

@ -155,6 +155,7 @@ def update_tabular(lines):
while cell_info[m][4] == '1':
m = m + columns
l = l + 1
if l >= rows: break
paragraph = paragraph + cell_content[l][k]
else:
paragraph = cell_content[j][k]