mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
62e4adaef2
commit
001d4025e9
@ -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
|
||||
|
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user