diff --git a/tools/generation/lib/util/parse_yaml.py b/tools/generation/lib/util/parse_yaml.py index 5d0937c169..6da8d4fed3 100644 --- a/tools/generation/lib/util/parse_yaml.py +++ b/tools/generation/lib/util/parse_yaml.py @@ -15,7 +15,7 @@ def parse_yaml(string): # dedent truncates only-whitespace lines, # so run it against a transformed string - # in which every line is terminated by a dot + # in which every line is terminated by a tilde terminated = endOfLine.sub(r'\1~', match.group(1)) dedented_terminated = textwrap.dedent(terminated) dedented = endOfLine.sub('', dedented_terminated)