Fixed encoding trouble

pull/33/head
KOLANICH 2019-07-16 17:04:04 +03:00
parent f7b94b3e57
commit cedd12232b
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ class Table(object):
"""
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):