fix comment alignment

This commit is contained in:
Victor Shyba 2020-01-03 04:00:33 -03:00 committed by Lex Berezhny
parent 7c353b7d76
commit b7b164b84c

View file

@ -17,8 +17,8 @@ log = logging.getLogger(__name__)
RE_ILLEGAL_FILENAME_CHARS = re.compile( RE_ILLEGAL_FILENAME_CHARS = re.compile(
r'(' r'('
r'[<>:"/\\|?*]+|' # Illegal characters r'[<>:"/\\|?*]+|' # Illegal characters
r'[\x00-\x1F]+|' # All characters in range 0-31 r'[\x00-\x1F]+|' # All characters in range 0-31
r'[ \t]*(\.)+[ \t]*$|' # Dots at the end r'[ \t]*(\.)+[ \t]*$|' # Dots at the end
r'(^[ \t]+|[ \t]+$)|' # Leading and trailing whitespace r'(^[ \t]+|[ \t]+$)|' # Leading and trailing whitespace
r'^CON$|^PRN$|^AUX$|' # Illegal names r'^CON$|^PRN$|^AUX$|' # Illegal names