Remove app parameter from callers used in makos

This commit is contained in:
guerler
2017-04-11 13:39:05 -04:00
parent 18b006cb75
commit 8ef55bca36
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
@@ -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: