Changed expression evaluation opening and closing pattern.

This commit is contained in:
2026-01-04 14:30:49 +01:00
parent 60d4bbecd9
commit 5a86e498d2
7 changed files with 18 additions and 18 deletions

View File

@@ -313,12 +313,12 @@ def _preprocess_string(value, parent=None):
def _eval_param(value):
"""This function parses a string value to check if patterns corresponding
to <@xxx@ exists.
to @|xxx| exists.
When this kind of pattern is found, an attempt to evaluate its
content is done.
If it is not evaluable, not replaced.
"""
return _parse_and_process("<@", "@>", value, evaluate)
return _parse_and_process("@|", "|", value, evaluate)
def _process_recursively(func, param_value, *fparams):