Commit 6806f820 authored by Lysandre's avatar Lysandre
Browse files

fix #2410

parent 176d3b30
...@@ -474,7 +474,7 @@ def replace_unicode_punct(text): ...@@ -474,7 +474,7 @@ def replace_unicode_punct(text):
text = text.replace("!", "!") text = text.replace("!", "!")
text = text.replace("(", "(") text = text.replace("(", "(")
text = text.replace(";", ";") text = text.replace(";", ";")
text = text.replace("1", '"') text = text.replace("1", '1')
text = text.replace("」", '"') text = text.replace("」", '"')
text = text.replace("「", '"') text = text.replace("「", '"')
text = text.replace("0", "0") text = text.replace("0", "0")
......
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