Skip to content

Commit

Permalink
doc: fix typo again
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr authored Aug 6, 2024
1 parent fdcffef commit ef31c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_build/variants.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ def find_used_variables_in_text(variant, recipe_text, selectors_only=False):
# NOTE: why use a regex instead of the jinja2 parser/AST?
# One can ask the jinj2 parser for undefined variables, but conda-build moves whole
# blocks of text around when searching for variables and applies selectors to the text.
# So the text reaches this function is not necessarily valid jinja2 syntax. :/
# So the text that reaches this function is not necessarily valid jinja2 syntax. :/
conditional_regex = (
r"(?:^|[^\{])\{%\s*(?:el)?if\s*.*" + v_regex + r"\s*(?:[^%]*?)?%\}"
)
Expand Down

0 comments on commit ef31c92

Please sign in to comment.