Fix DeprecationWarning: invalid escape sequence

When running "tox -e pep8", "DeprecationWarning: invalid escape sequence"
are shown. This is because a normal string contains escape sequences.
Escape sequences need to be placed in raw strings.

TrivialFix

Change-Id: I34f63d90f53b721e9afdeb99ac53ef0c24857b17
This commit is contained in:
Akihiro Motoki 2019-09-19 17:34:55 +09:00
parent d9546dce75
commit f87c9ee5e9
2 changed files with 3 additions and 3 deletions

View File

@ -32,10 +32,10 @@ Guidelines for writing new hacking checks
asse_trueinst_re = re.compile(
r"(.)*assertTrue\(isinstance\((\w|\.|\'|\"|\[|\])+, "
"(\w|\.|\'|\"|\[|\])+\)\)")
r"(\w|\.|\'|\"|\[|\])+\)\)")
asse_equal_type_re = re.compile(
r"(.)*assertEqual\(type\((\w|\.|\'|\"|\[|\])+\), "
"(\w|\.|\'|\"|\[|\])+\)")
r"(\w|\.|\'|\"|\[|\])+\)")
asse_equal_end_with_none_re = re.compile(
r"(.)*assertEqual\((\w|\.|\'|\"|\[|\])+, None\)")
asse_equal_start_with_none_re = re.compile(

View File

@ -31,7 +31,7 @@ TEST_VAR_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__),
def set_config_value(filepath, key, value):
"""Set 'key = value' in config file"""
replacement_line = '%s = %s\n' % (key, value)
match = re.compile('^%s\s+=' % key).match
match = re.compile(r'^%s\s+=' % key).match
with open(filepath, 'r+') as f:
lines = f.readlines()
f.seek(0, 0)