Commit da64cb96 authored by Nicolas Delaby's avatar Nicolas Delaby

Fix wrong attribute name.

Reviewed and approved by jp


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31271 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a4a5017f
......@@ -780,10 +780,10 @@ class ODFStrategy(Implicit):
column.text = None
for child in column:
# clear data except style
style_value = child.attrib.get(self._name_attribute_name)
style_value = child.attrib.get(self._style_attribute_name)
child.clear()
if style_value:
child.set(self._name_attribute_name, style_value)
child.set(self._style_attribute_name, style_value)
def _getColumnValueAttribute(self, column):
attrib = column.attrib
......
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