Skip to content

Commit

Permalink
Merge pull request #649 from galaxyproject/tool_shed_lower
Browse files Browse the repository at this point in the history
Tool-IDs needs to be lowercase in the ToolShed
  • Loading branch information
jmchilton committed Mar 1, 2017
2 parents 96782cd + 4332ae1 commit e63c342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planemo/shed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ def _build_auto_tool_repos(path, config, auto_tool_repos):
excludes = _shed_config_excludes(config)

def _build_repository(tool_path, tool_el):
tool_id = tool_el.getroot().get("id")
tool_id = tool_el.getroot().get("id").lower()
tool_name = tool_el.getroot().get("name")
template_vars = dict(
tool_id=tool_id,
Expand Down

0 comments on commit e63c342

Please sign in to comment.