Commit 24bb7b76 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #11444 from cclauss:patch-2

parents b5423f3c de99f53e
...@@ -48,7 +48,7 @@ class table(object): ...@@ -48,7 +48,7 @@ class table(object):
if len(self.rows) - 1 == self.ridx: if len(self.rows) - 1 == self.ridx:
self.rows.append(tblRow(len(self.columns), properties)) self.rows.append(tblRow(len(self.columns), properties))
else: else:
self.rows[ridx + 1].props = properties self.rows[self.ridx + 1].props = properties
self.ridx += 1 self.ridx += 1
return self.rows[self.ridx] return self.rows[self.ridx]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment