commit/galaxy-central: greg: Fix for defining an error message when installing a tool dependency along with a tool shed repository.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/da82785d7307/ Changeset: da82785d7307 User: greg Date: 2013-12-10 21:27:51 Summary: Fix for defining an error message when installing a tool dependency along with a tool shed repository. Affected #: 1 file diff -r 8bdb1113ad0425aab54f31b4c5a37fe456a675d2 -r da82785d730737313cf9af7348791cb4b0afc937 lib/tool_shed/galaxy_install/tool_dependencies/install_util.py --- a/lib/tool_shed/galaxy_install/tool_dependencies/install_util.py +++ b/lib/tool_shed/galaxy_install/tool_dependencies/install_util.py @@ -93,7 +93,7 @@ env_file_builder.append_line( action="source", value=required_tool_dependency_env_file_path ) return_code = env_file_builder.return_code if return_code: - error_message = 'Error defining env.sh file for package %s, return_code: %s' % ( str( package_name, str( return_code ) ) ) + error_message = 'Error defining env.sh file for package %s, return_code: %s' % ( str( package_name ), str( return_code ) ) tool_dependency = tool_dependency_util.handle_tool_dependency_installation_error( app, tool_dependency, error_message, 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