40a41
> from __future__ import print_function
57c58
< print "Warning: Failed to find git repo directory: %s" % e
---
> print("Warning: Failed to find git repo directory: %s" % e)
68c69,70
< print "Warning: Can't install %s, hook already exists." % hook_name
---
> print("Warning: Can't install %s, hook already exists." %
> hook_name)
72c74
< print "Warning: Removing broken symlink for hook %s." % hook_name
---
> print("Warning: Removing broken symlink for hook %s." % hook_name)
94c96
< print "Error updating git %s hook" % hook_name
---
> print("Error updating git %s hook" % hook_name)
100c102
< print git_style_message,
---
> print(git_style_message, end=' ')
104c106
< print "Input exception, exiting scons.\n"
---
> print("Input exception, exiting scons.\n")