mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Fix invalid string escape sequences.
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user