Fix invalid string escape sequences.

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

View file

@ -179,7 +179,7 @@ def main():
module.fail_json(msg="%s needs a key parameter" % state)
# All xattr must begin in user namespace
if key is not None and not re.match('^user\.', key):
if key is not None and not re.match(r'^user\.', key):
key = 'user.%s' % key
if (state == 'present' or value is not None):