1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/4bea5ec54ec4/ changeset: 4bea5ec54ec4 user: greg date: 2012-07-03 20:42:52 summary: Fix definition of missing tool dependencies. affected #: 1 file diff -r c4bdfbf9b3270809754fc075bf0af9b9a3d49f3c -r 4bea5ec54ec4022da1fd49bb616304e4e4b1ec6c lib/galaxy/model/__init__.py --- a/lib/galaxy/model/__init__.py +++ b/lib/galaxy/model/__init__.py @@ -2720,9 +2720,7 @@ """Return the repository's tool dependencies that are not currently installed, and may not ever have been installed.""" missing_dependencies = [] for tool_dependency in self.tool_dependencies: - if tool_dependency.status in [ ToolDependency.installation_status.NEVER_INSTALLED, - ToolDependency.installation_status.ERROR, - ToolDependency.installation_status.UNINSTALLED ]: + if tool_dependency.status not in [ ToolDependency.installation_status.INSTALLED ]: missing_dependencies.append( tool_dependency ) return missing_dependencies @property 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.