Skip to content

Commit

Permalink
Merge pull request #1 from anakin87/anakin87-patch-1
Browse files Browse the repository at this point in the history
Update core.py
  • Loading branch information
anakin87 committed Aug 25, 2020
2 parents 7054731 + 579bc16 commit eadc54a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion camelot/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ def to_html(self, path, **kwargs):
"""
html_string = self.df.to_html(**kwargs)
with open(path, "w") as f:
with open(path, "w", encoding="utf-8") as f:
f.write(html_string)

def to_sqlite(self, path, **kwargs):
Expand Down

0 comments on commit eadc54a

Please sign in to comment.