Skip to content

Commit 1454396

Browse files
committed
Fix (unlikely to occur, unless things were already broken) error in step_handler chmod action.
1 parent b639bc0 commit 1454396

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/tool_shed/galaxy_install/tool_dependencies/recipe/step_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ def execute_step( self, tool_dependency, package_name, actions, action_dict, fil
498498
if os.path.exists( target_file ):
499499
os.chmod( target_file, mode )
500500
else:
501-
log.debug( 'Invalid file %s specified, ignoring %s action.', target_file, action_type )
501+
log.debug( 'Invalid file %s specified, ignoring %s action.', target_file, self.type )
502502
return tool_dependency, None, None
503503

504504
def prepare_step( self, tool_dependency, action_elem, action_dict, install_environment, is_binary_download ):

0 commit comments

Comments
 (0)