From 24308fb6053dcecbf20d6e7a8a8e9b7d96fe07db Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Thu, 12 Oct 2017 16:59:47 +0200 Subject: [PATCH] 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. --- templates/show_params.mako | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/show_params.mako b/templates/show_params.mako index f93f50eaa3cb..8975df6732bf 100644 --- a/templates/show_params.mako +++ b/templates/show_params.mako @@ -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 %>