소스 검색

Do not add space after period and colon.

scossu 4 달 전
부모
커밋
f2ef3c6d03
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scriptshifter/hooks/general/__init__.py

+ 1 - 1
scriptshifter/hooks/general/__init__.py

@@ -12,7 +12,7 @@ MULTI_WS_RE = compile(r"(\s){2,}")
 # Punctuation and brackets.
 # TODO add angled brackets, opening and closing quotes, etc.
 NORM1_RE = compile(r"\s([.,;:\)\]}])")
-NORM2_RE = compile(r"([.,;:\)\]}])(\S)")
+NORM2_RE = compile(r"([,;\)\]}])(\S)")
 NORM3_RE = compile(r"([\(\[\{])\s")
 NORM4_RE = compile(r"(\S)([\(\[\{])")