Merge pull request #1 from RickieL/RickieL-patch-1

fixed rewrite regex Curly Bracket case.
This commit is contained in:
RickieL 2018-09-10 22:13:23 +08:00 committed by GitHub
commit 21012dab46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,6 +66,8 @@ def clean_lines(orig_lines) -> list:
else:
if line.startswith("#"):
cleaned_lines.append(strip_variable_template_tags(line))
elif line.startswith("rewrite"):
cleaned_lines.append(strip_variable_template_tags(line))
else:
cleaned_lines.extend(
[strip_variable_template_tags(l).strip() for l in re.split(r"([{}])", line) if l != ""])