Skip to content

Commit

Permalink
Remove app parameter from callers used in makos
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Apr 11, 2017
1 parent 18b006c commit 8ef55bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/show_params.mako
Expand Up @@ -109,7 +109,7 @@
%>
<tr>
${inputs_recursive_indent( text=label, depth=depth )}
<td>${input.value_to_display_text( param_values[input.name], trans.app ) | h}</td>
<td>${input.value_to_display_text( param_values[input.name] ) | h}</td>
<td>${ upgrade_messages.get( input.name, '' ) | h }</td>
</tr>
%endif
Expand Down
2 changes: 1 addition & 1 deletion templates/webapps/galaxy/workflow/display.mako
Expand Up @@ -64,7 +64,7 @@
<i>select at runtime</i>
%endif
%else:
${cgi.escape( param.value_to_display_text( value, app ) or 'Unavailable.' )}
${cgi.escape( param.value_to_display_text( value ) or 'Unavailable.' )}
%endif
</div>
%if hasattr( step, 'upgrade_messages' ) and step.upgrade_messages and param.name in step.upgrade_messages:
Expand Down

0 comments on commit 8ef55bc

Please sign in to comment.