Skip to content

Commit

Permalink
Merge pull request #1 from ainoneko/fix_pass_sep_to_tablemodels
Browse files Browse the repository at this point in the history
Fixed issue dmnfarrell#58 more
  • Loading branch information
ainoneko committed Mar 25, 2021
2 parents 4fb9287 + b599ba9 commit 546bb72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tkintertable/Tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -2235,7 +2235,7 @@ def importCSV(self, filename=None, sep=','):
model.importDict(importer.data)
else:
model = TableModel()
model.importCSV(filename)
model.importCSV(filename, sep=sep)
self.updateModel(model)
return

Expand Down

0 comments on commit 546bb72

Please sign in to comment.