1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/75e7383c5c79/ Changeset: 75e7383c5c79 User: dannon Date: 2013-05-03 21:46:53 Summary: Fix install_repository_tools script to appropriately handle a trailing slash in the URL. Affected #: 1 file diff -r 324d023bbf59aafb4be03cbb9842456aab0a1965 -r 75e7383c5c794e02503dc03e0d5daf3694323b7d scripts/api/install_repository_tools.py --- a/scripts/api/install_repository_tools.py +++ b/scripts/api/install_repository_tools.py @@ -34,7 +34,7 @@ data[ 'install_repository_dependencies' ] = options.install_repository_dependencies if options.install_tool_dependencies: data[ 'install_tool_dependencies' ] = options.install_tool_dependencies - submit( options.api, '%s%s' % ( options.local_url, '/api/tool_shed_repositories/new/install_repository_revision' ), data ) + submit( options.api, '%s%s' % ( options.local_url.strip('/'), '/api/tool_shed_repositories/new/install_repository_revision' ), data ) if __name__ == '__main__': parser = argparse.ArgumentParser( description='Installation of tool shed repositories via the Galaxy API.' ) 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.