Skip to content

Commit

Permalink
remove extra ')' character (#35)
Browse files Browse the repository at this point in the history
removing extra character from controller_job_templates.j2 that caused the export to fail
  • Loading branch information
opuk authored Nov 22, 2024
1 parent 8733cd7 commit 95efad1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ controller_templates:
host=aap_hostname, oauth_token=aap_oauthtoken, verify_ssl=aap_validate_certs)[0])
| from_yaml | to_nice_yaml(indent=2,width=500,sort_keys=False) | regex_replace("\n\n[ ]*", "\\\\n")
| indent(width=6, first=False) | regex_replace('(^[^:]*): (.*){([{%])', '\\g<1>: !unsafe \\g<2>{\\g<3>', multiline=True)
| replace("^$", "") | replace("$encrypted$", "\'\'"))
| replace("^$", "") | replace("$encrypted$", "\'\'")
-%}
{% if template_overrides_resources.job_template[current_job_templates_asset_value.name].survey_spec is defined
or template_overrides_global.job_template.survey_spec is defined
Expand Down

0 comments on commit 95efad1

Please sign in to comment.