Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion elyra/templates/kubeflow/v1/python_dsl_template.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def generated_pipeline(
{% elif task_input_spec.pipeline_parameter_reference %}
{{ task_input_name }}={{ task_input_spec.pipeline_parameter_reference }},
{% elif task_input_spec.requires_quoted_rendering %}
{{ task_input_name }}="{{ task_input_spec.value }}",
{{ task_input_name }}="""{{ task_input_spec.value | string_delimiter_safe }}""",
{% else %}
{{ task_input_name }}={{ task_input_spec.value }},
{% endif %}
Expand Down