Replace Chinese punctuation with English punctuation

Curly quotes(Chinese punctuation) usually input from Chinese input method.
When read from english context, it makes some confusion.

Change-Id: I8b96ee793eee8a8802cd9bd3993714768df27cb7
This commit is contained in:
inspurericzhang 2019-08-23 10:54:47 +08:00
parent e8c68ffb74
commit 4c573a4f07
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen
[flake8]
# Temporarily disable complaints about docstring for public module/class/method
# H106 Dont put vim configuration in source files
# H106 Don't put vim configuration in source files
# H203 Use assertIs(Not)None to check for None
ignore = D100,D101,D102,D103,D104,D105,D200,D201,D202,D204,D205,D300,D301,D400,D401,I100,I201
enable-extensions=H106,H203