Skip to content

Commit

Permalink
Merge pull request #84 from laborleben/fix_blank_fields
Browse files Browse the repository at this point in the history
Fixing #83 (blank fields)
  • Loading branch information
uvemas authored Oct 5, 2017
2 parents bb65d41 + c7ae873 commit fab9fbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vitables/vttables/leaf_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ def __init__(self, leaf, parent=None):
self.formatContent = vitables.utils.formatObjectContent
elif atom_type in ('vlstring', 'vlunicode'):
self.formatContent = vitables.utils.formatStringContent
else:
self.formatContent = vitables.utils.formatStringContent
else:
self.formatContent = vitables.utils.formatStringContent

# Track selected cell
self.selected_cell = {'index': QtCore.QModelIndex(), 'buffer_start': 0}
Expand Down

0 comments on commit fab9fbe

Please sign in to comment.