commit/galaxy-central: greg: Fix for discovering types to which a repository can be set.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/416e08c46ed6/ Changeset: 416e08c46ed6 User: greg Date: 2013-07-18 16:57:29 Summary: Fix for discovering types to which a repository can be set. Affected #: 2 files diff -r d95be6981cc9a862a458bebb218a5180319ecbd7 -r 416e08c46ed6b03598581c5d6c6b44587aa9f170 lib/galaxy/webapps/tool_shed/model/__init__.py --- a/lib/galaxy/webapps/tool_shed/model/__init__.py +++ b/lib/galaxy/webapps/tool_shed/model/__init__.py @@ -164,7 +164,7 @@ return True if self.times_downloaded == 0: return True - if self.type == rt_util.DEFAULT: + if self.type == rt_util.UNRESTRICTED: return True return False diff -r d95be6981cc9a862a458bebb218a5180319ecbd7 -r 416e08c46ed6b03598581c5d6c6b44587aa9f170 lib/tool_shed/util/tool_dependency_util.py --- a/lib/tool_shed/util/tool_dependency_util.py +++ b/lib/tool_shed/util/tool_dependency_util.py @@ -155,7 +155,7 @@ message += "This repository currently contains a single file named <b>%s</b>. If additional files will " % suc.TOOL_DEPENDENCY_DEFINITION_FILENAME message += "not be added to this repository, then it's type should be set to <b>%s</b>.<br/>" % tool_dependency_definition_type_class.label else: - message += "This repository contains no tools, so these tool dependencies are considered orphans within this repository.<br/>" + message += "This repository contains no tools, so it's defined tool dependencies are considered orphans within this repository.<br/>" return message def get_installed_and_missing_tool_dependencies( trans, repository, all_tool_dependencies ): 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.
participants (1)
-
commits-noreply@bitbucket.org