Unverified Commit 36dc05c4 authored by Jyong's avatar Jyong Committed by GitHub

fix chinese encoding (#411)

parent 54f3bbbf
......@@ -251,7 +251,7 @@ class NotionPageReader(BaseReader):
else:
value = property_value[type]
data[property_name] = value
database_content_list.append(json.dumps(data))
database_content_list.append(json.dumps(data, ensure_ascii=False))
return "\n\n".join(database_content_list)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment