JSON use the original char encoding

pull/465/head
dgtlmoon 3 years ago
parent c25294ca57
commit 12d16758af

@ -78,7 +78,8 @@ def _parse_json(json_data, jsonpath_filter):
# Re 265 - Just return an empty string when filter not found # Re 265 - Just return an empty string when filter not found
return '' return ''
stripped_text_from_html = json.dumps(s, indent=4) # Ticket #462 - allow the original encoding through, usually it's UTF-8 or similar
stripped_text_from_html = json.dumps(s, indent=4, ensure_ascii=False)
return stripped_text_from_html return stripped_text_from_html

Loading…
Cancel
Save