1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/27b458743a11/ Changeset: 27b458743a11 User: Dave Bouvier Date: 2013-07-24 16:17:03 Summary: Fix to correctly handle comments in repository dependency definitions. Affected #: 1 file diff -r fdcd30ffdafd0a11ba7c90d5c01d1a3b5cb1f60c -r 27b458743a117b5fb119915dc89bddc017625146 lib/tool_shed/util/commit_util.py --- a/lib/tool_shed/util/commit_util.py +++ b/lib/tool_shed/util/commit_util.py @@ -236,15 +236,16 @@ root = tree.getroot() if root.tag == 'repositories': for index, elem in enumerate( root ): - # <repository name="molecule_datatypes" owner="test" changeset_revision="1a070566e9c6" /> - populated, elem, error_message = handle_repository_dependency_elem( trans, elem ) - if error_message: - exception_message = 'The repository_dependencies.xml file contains an invalid <repository> tag. %s' % error_message - raise Exception( exception_message ) - if populated: - root[ index ] = elem - if not altered: - altered = True + if elem.tag == 'repository': + # <repository name="molecule_datatypes" owner="test" changeset_revision="1a070566e9c6" /> + populated, elem, error_message = handle_repository_dependency_elem( trans, elem ) + if error_message: + exception_message = 'The repository_dependencies.xml file contains an invalid <repository> tag. %s' % error_message + raise Exception( exception_message ) + if populated: + root[ index ] = elem + if not altered: + altered = True return altered, root return False, None 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.