Convert numeric columns to unicode in simple table

svn: r22229
This commit is contained in:
Nick Hall 2013-05-09 21:47:29 +00:00
parent 1118476e38
commit fca6091ebd

View File

@ -266,7 +266,7 @@ class SimpleTable(object):
if y is None: if y is None:
return False # no markup for this column return False # no markup for this column
else: else:
return data return conv_to_unicode_direct(data)
def get_cell_type(self, col): def get_cell_type(self, col):
""" """