Fix invalid string escape sequences.

This commit is contained in:
Matt Clay
2017-11-20 19:08:30 -08:00
parent f9cd50411f
commit e45c763b64
48 changed files with 77 additions and 77 deletions

View File

@@ -39,7 +39,7 @@ except ImportError:
from ansible.utils.display import Display
display = Display()
_SAFE_GROUP = re.compile("[^A-Za-z0-9\_]")
_SAFE_GROUP = re.compile("[^A-Za-z0-9_]")
# Helper methods