fixed rewrite regex Curly Bracket case.
fix the case that "Curly Bracket" in the rewrite case below: `rewrite "^/a/([\d]{2})_(\d+).html$" /a/0$1/$1$2.html last;`
This commit is contained in:
parent
f5a26225bd
commit
0b72d86a8b
@ -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 != ""])
|
||||
|
Loading…
x
Reference in New Issue
Block a user