Use 'python2.7' in shebang; make script executable

On modern systems 'python' is most likely symlinked to python3, but
'google-java-format-diff.py' uses python2 syntax. Therefore it is better
to explicitly use 'python2.7'. Also changed file mode of the script (chmod
a+x) to make it executable.
diff --git a/scripts/google-java-format-diff.py b/scripts/google-java-format-diff.py
old mode 100644
new mode 100755
index ee97b8c..91fe776
--- a/scripts/google-java-format-diff.py
+++ b/scripts/google-java-format-diff.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2.7
 #
 #===- google-java-format-diff.py - google-java-format Diff Reformatter -----===#
 #