Skip to content

Commit

Permalink
Fix misplaced parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Aug 10, 2016
1 parent f4631d2 commit 33c4025
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,9 +418,9 @@ def handle_complex_repository_dependency_for_package( self, elem, package_name,
dependent_install_dir,
tool_dependency_type='package' )
if not can_install_tool_dependency:
log.debug( "Tool dependency %s version %s cannot be installed (it was probably previously installed), " %
( str( tool_dependency.name, str( tool_dependency.version ) ) ) )
log.debug( "so appending it to the list of handled tool dependencies." )
log.debug( "Tool dependency %s version %s cannot be installed (it was probably previously installed), "
"so appending it to the list of handled tool dependencies.",
str( tool_dependency.name), str( tool_dependency.version ) )
handled_tool_dependencies.append( tool_dependency )
else:
can_install_tool_dependency = True
Expand Down

0 comments on commit 33c4025

Please sign in to comment.