1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a477486bf18e/ Changeset: a477486bf18e Branch: stable 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 4b1c7ad464ea5b181d9d5d95e8751518b170fca8 -r a477486bf18eafdd14dd7ba1e91e17f1b05e8121 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.