commit/galaxy-central: greg: Fix imports broken in 9f790bc90769 using patch from Bjorn Gruning.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/1eab72ce0a48/ changeset: 1eab72ce0a48 user: greg date: 2012-08-09 12:46:13 summary: Fix imports broken in 9f790bc90769 using patch from Bjorn Gruning. affected #: 1 file diff -r a10bb73f579386e67c52383b4c0722cb693d7cf9 -r 1eab72ce0a483dd8bb09e43d549b119879d5435d lib/galaxy/util/shed_util.py --- a/lib/galaxy/util/shed_util.py +++ b/lib/galaxy/util/shed_util.py @@ -2,7 +2,8 @@ import galaxy.tools.data from datetime import date, datetime, timedelta from time import strftime, gmtime -from galaxy import tools, util +from galaxy import util +from galaxy.tools import parameters from galaxy.datatypes.checkers import * from galaxy.util.json import * from galaxy.tools.search import ToolBoxSearch @@ -255,7 +256,7 @@ invalid_files_and_errors_tups = [] correction_msg = '' for input_param in tool.input_params: - if isinstance( input_param, tools.parameters.basic.SelectToolParameter ) and input_param.is_dynamic: + if isinstance( input_param, parameters.basic.SelectToolParameter ) and input_param.is_dynamic: # If the tool refers to .loc files or requires an entry in the tool_data_table_conf.xml, make sure all requirements exist. options = input_param.dynamic_options or input_param.options if options: Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket