diff --git a/ipy_table.py b/ipy_table.py index 8979a1f..a8aab58 100755 --- a/ipy_table.py +++ b/ipy_table.py @@ -360,7 +360,7 @@ def _formatter(self, item, cell_style): and 'float_format' in cell_style): text = cell_style['float_format'] % item else: - if type(item) == unicode: + if type(item) == str: text = item else: text = str(item)