Fix invalid string escape sequences.

This commit is contained in:
Matt Clay
2017-11-21 10:24:37 -08:00
parent 6ac9d05de6
commit 9735a70059
49 changed files with 81 additions and 81 deletions

View File

@@ -66,7 +66,7 @@ class Blacklist(object):
return False
def get_pattern(self):
return '^blacklist\s*' + self.module + '$'
return r'^blacklist\s*' + self.module + '$'
def readlines(self):
f = open(self.filename, 'r')