Skip to content

Commit

Permalink
fix ari 223 issue (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
justjais authored Jun 13, 2024
1 parent 4297d60 commit b372778
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible_risk_insight/model_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@
# "brightcomputing.bcm-9.1.11+41615.gitfab9053.info"
collection_info_dir_re = re.compile(r"^[a-z0-9_]+\.[a-z0-9_]+-[0-9]+\.[0-9]+\.[0-9]+.*\.info$")

string_module_options_re = re.compile(r"^(?:[^ ]* ?)([a-z0-9_]+=(?:[^ ]*{{ [^ ]+ }}[^ ]*|[^ ])+\s?)")
string_module_options_re = re.compile(r"^(?:[^ ]* ?)([a-z0-9_]+=(?:[^ ]*{{ [^*]+ }}[^ ]*|[^ ])+\s?)")

string_module_option_parts_re = re.compile(r"([a-z0-9_]+=(?:[^ ]*{{ [^ ]+ }}[^ ]*|[^ ])+\s?)")
string_module_option_parts_re = re.compile(r"([a-z0-9_]+=(?:[^ ]*{{ [^*]+ }}[^ ]*|[^ ])+\s?)")

loop_task_option_names = [
"loop",
Expand Down

0 comments on commit b372778

Please sign in to comment.