1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/0b955e54451c/ Changeset: 0b955e54451c User: natefoo Date: 2013-09-26 17:02:58 Summary: Bugfix for tool-to-destination mapping, tool ids are lowercased but the mapping id was not lowercased. Affected #: 1 file diff -r 870b10eaa4cf2c4045988425685175dcaabe625b -r 0b955e54451cf22a1a7c8fa0f92beb9e375f1f1e lib/galaxy/jobs/__init__.py --- a/lib/galaxy/jobs/__init__.py +++ b/lib/galaxy/jobs/__init__.py @@ -179,7 +179,7 @@ if tools is not None: for tool in self.__findall_with_required(tools, 'tool'): # There can be multiple definitions with identical ids, but different params - id = tool.get('id') + id = tool.get('id').lower() if id not in self.tools: self.tools[id] = list() self.tools[id].append(JobToolConfiguration(**dict(tool.items()))) 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.