always strip cell content

This commit is contained in:
Frédéric Péters 2011-05-04 18:11:22 +02:00
parent 1f301cf227
commit 45e993d725
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ def get_cell_text(cell):
text = ''
for child in cell.getchildren():
text += child.text
return text
return text.strip()
def convert(input_filename, output_directory):
'''