mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
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:
@@ -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 = {}
|
||||
%>
|
||||
|
||||
Reference in New Issue
Block a user