1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/48b64ce958b4/ changeset: 48b64ce958b4 user: greg date: 2012-03-12 20:30:37 summary: Fix for rerunning a tool where the correct id / version are available. affected #: 1 file diff -r b199460443afeb3023f1c160f23b2215ba42add4 -r 48b64ce958b4ed9ec28639c1057adc67f70ae016 lib/galaxy/tools/__init__.py --- a/lib/galaxy/tools/__init__.py +++ b/lib/galaxy/tools/__init__.py @@ -246,9 +246,15 @@ if tool_id in self.tools_by_id: tool = self.tools_by_id[ tool_id ] if tool_version and tool.version == tool_version: - return tool + if get_all_versions: + return [ tool ] + else: + return tool else: - return tool + if get_all_versions: + return [ tool ] + else: + return tool tv = self.__get_tool_version( tool_id ) if tv: tool_version_ids = tv.get_version_ids( self.app ) 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.