Fix listify import in show_params.mako

This fixes a problem reported on the [mailing list](http://dev.list.galaxyproject.org/Show-history-structure-Error-Undefined-object-is-not-callable-td4671115.html).
I am not sure why importing at the top of the file is not enough though.
This commit is contained in:
mvdbeek
2017-10-12 17:15:42 +02:00
parent 1635f46430
commit 24308fb605
+2 -1
View File
@@ -1,6 +1,6 @@
<%inherit file="/base.mako"/>
<%namespace file="/message.mako" import="render_msg" />
<% from galaxy.util import listify, nice_size, unicodify %>
<% from galaxy.util import nice_size, unicodify %>
<style>
.inherit {
@@ -28,6 +28,7 @@
<%def name="inputs_recursive( input_params, param_values, depth=1, upgrade_messages=None )">
<%
from galaxy.util import listify
if upgrade_messages is None:
upgrade_messages = {}
%>