From bd179654c530a2d20a79104514e4f9e663d33cfe Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 10 Nov 2012 15:19:09 -0500 Subject: Upgrading pylint means fixing more nits. --- coverage/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/files.py') diff --git a/coverage/files.py b/coverage/files.py index 632d6e3..8446650 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -196,7 +196,7 @@ class PathAliases(object): # either separator. regex_pat = regex_pat.replace(r"\/", r"[\\/]") # We want case-insensitive matching, so add that flag. - regex = re.compile("(?i)" + regex_pat) + regex = re.compile(r"(?i)" + regex_pat) # Normalize the result: it must end with a path separator. result_sep = sep(result) -- cgit v1.2.1