mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
fix genration of config files
This commit is contained in:
@@ -97,7 +97,7 @@ def _json_wrap_input(input, value_wrapper, profile, handle_files="skip"):
|
||||
if input.multiple and packaging.version.parse(str(profile)) >= packaging.version.parse('20.05'):
|
||||
json_value = [_ for _ in _cast_if_not_none(value_wrapper.value, list)]
|
||||
else:
|
||||
json_value = _cast_if_not_none(value_wrapper, str)
|
||||
json_value = _cast_if_not_none(value_wrapper.value, str)
|
||||
elif input_type == "data_column":
|
||||
# value is a SelectToolParameterWrapper()
|
||||
if input.multiple:
|
||||
|
||||
Reference in New Issue
Block a user