Skip to content

Commit

Permalink
Merge pull request #7422 from mvdbeek/fix_workflow_loading
Browse files Browse the repository at this point in the history
[18.09] Fix workflow loading on systems with ASCII locale
  • Loading branch information
martenson committed Feb 28, 2019
2 parents 9b72f5a + 9e0d3b6 commit 13c175a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/managers/workflows.py
Expand Up @@ -1012,7 +1012,7 @@ def __set_default_label(self, step, module, state):
if not module.label and module.type in ['data_input', 'data_collection_input']:
new_state = safe_loads(state)
default_label = new_state.get('name')
if str(default_label).lower() not in ['input dataset', 'input dataset collection']:
if util.unicodify(default_label).lower() not in ['input dataset', 'input dataset collection']:
step.label = module.label = default_label


Expand Down

0 comments on commit 13c175a

Please sign in to comment.