Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

[WIP] fix #322 #335

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion camelot/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,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