commit/galaxy-central: dan: Change suc.get_url_from_tool_shed to common_util.get_tool_shed_url_from_tool_shed_registry.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/728373009c29/ Changeset: 728373009c29 User: dan Date: 2014-04-10 19:49:43 Summary: Change suc.get_url_from_tool_shed to common_util.get_tool_shed_url_from_tool_shed_registry. Affected #: 1 file diff -r 44ad9370003cfa3217f15d1ee8a2d6a114cb50bb -r 728373009c29c371ff448383b48543296142d311 lib/galaxy/model/tool_shed_install/__init__.py --- a/lib/galaxy/model/tool_shed_install/__init__.py +++ b/lib/galaxy/model/tool_shed_install/__init__.py @@ -4,7 +4,6 @@ from galaxy.util.bunch import Bunch from galaxy.util import asbool from tool_shed.util import common_util -from tool_shed.util.shed_util_common import get_url_from_tool_shed from urlparse import urljoin log = logging.getLogger( __name__ ) @@ -76,7 +75,7 @@ return self.deleted def get_sharable_url( self, app ): - tool_shed_url = get_url_from_tool_shed( app, self.tool_shed ) + tool_shed_url = common_util.get_tool_shed_url_from_tool_shed_registry( app, self.tool_shed ) if tool_shed_url: return urljoin( tool_shed_url, 'view/%s/%s' % ( self.owner, self.name ) ) return tool_shed_url 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