1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a4699a3d7c2d/ Changeset: a4699a3d7c2d User: greg Date: 2014-05-14 21:07:30 Summary: Fix for tool migration manager to use self.app instead of trans.app. Affected #: 1 file diff -r 6fecbad49afd69beebb55fb8a9b83ecae29af723 -r a4699a3d7c2de78ad5aa5ea9e79409e85050fa9f lib/tool_shed/galaxy_install/tool_migration_manager.py --- a/lib/tool_shed/galaxy_install/tool_migration_manager.py +++ b/lib/tool_shed/galaxy_install/tool_migration_manager.py @@ -470,7 +470,7 @@ if index is not None: tool_dependency = tool_dependencies[ index ] tool_dependency, proceed_with_install, action_elem_tuples = \ - tag_manager.process_tag_set( trans.app, + tag_manager.process_tag_set( self.app, tool_shed_repository, tool_dependency, elem, @@ -480,7 +480,7 @@ tool_dependency_db_records=tool_dependencies ) if proceed_with_install: try: - tool_dependency = install_manager.install_package( trans.app, + tool_dependency = install_manager.install_package( self.app, elem, tool_shed_repository, tool_dependencies=tool_dependencies, @@ -493,7 +493,7 @@ # Since there was an installation error, update the tool dependency status to Error. The # remove_installation_path option must be left False here. tool_dependency = \ - tool_dependency_util.handle_tool_dependency_installation_error( trans.app, + tool_dependency_util.handle_tool_dependency_installation_error( self.app, tool_dependency, error_message, remove_installation_path=False ) 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.