Skip to content

Commit

Permalink
Tool-IDs needs to be lowercase in the ToolShed
Browse files Browse the repository at this point in the history
  • Loading branch information
bgruening authored Mar 1, 2017
1 parent 96782cd commit 4332ae1
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 4332ae1

Please sign in to comment.