Fix deprecation warning in tests

This commit is contained in:
Bruno Alla 2019-05-27 16:54:08 +01:00
parent 00e1f74b7d
commit 47937fce79

View File

@ -7,7 +7,7 @@ import sh
import yaml
from binaryornot.check import is_binary
PATTERN = "{{(\s?cookiecutter)[.](.*?)}}"
PATTERN = r"{{(\s?cookiecutter)[.](.*?)}}"
RE_OBJ = re.compile(PATTERN)
YN_CHOICES = ["y", "n"]