commit/galaxy-central: greg: Fix imports in the tool shed's metadata_util.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a8baee5722c3/ Changeset: a8baee5722c3 User: greg Date: 2013-08-26 20:12:43 Summary: Fix imports in the tool shed's metadata_util. Affected #: 1 file diff -r f5791b418b4e1d0be9d94895f0642083f795e61f -r a8baee5722c3d6df9d71bfdd5ed40c7890b2a473 lib/tool_shed/util/metadata_util.py --- a/lib/tool_shed/util/metadata_util.py +++ b/lib/tool_shed/util/metadata_util.py @@ -19,7 +19,7 @@ from tool_shed.util import tool_dependency_util from tool_shed.util import tool_util from tool_shed.util import xml_util -import tool_shed.galaxy_install.tool_dependencies.common_util as cu +from tool_shed.galaxy_install.tool_dependencies import td_common_util import pkg_resources @@ -1124,7 +1124,7 @@ if not toolshed: # Default to the current tool shed. toolshed = str( url_for( '/', qualified=True ) ).rstrip( '/' ) - cleaned_toolshed = cu.clean_tool_shed_url( toolshed ) + cleaned_toolshed = td_common_util.clean_tool_shed_url( toolshed ) name = repository_elem.get( 'name' ) owner = repository_elem.get( 'owner' ) changeset_revision = repository_elem.get( 'changeset_revision' ) 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