Fixed encoding trouble
parent
f7b94b3e57
commit
cedd12232b
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue