diff options
Diffstat (limited to 'scripts/build-command-templates')
| -rwxr-xr-x | scripts/build-command-templates | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/scripts/build-command-templates b/scripts/build-command-templates index ba80eadb2..4fcdb8ade 100755 --- a/scripts/build-command-templates +++ b/scripts/build-command-templates @@ -125,7 +125,7 @@ def get_properties(p):          regexes = []          regex_elements = vce.findall("regex")          if regex_elements is not None: -            regexes = list(map(lambda e: e.text.strip(), regex_elements)) +            regexes = list(map(lambda e: e.text.strip().replace('\\','\\\\'), regex_elements))          if "" in regexes:              print("Warning: empty regex, node will be accepting any value") | 
