Fix scripts that auto-invoke python to find it correctly.

Some of our environments use python from /usr/local/bin. In these
environments using /usr/bin/python can cause unexpected behavior
since the python module search path is different.  So use env
to find python using the PATH instead.
pull/128/head
Doug Felt 2017-05-17 09:28:52 -07:00
parent 3fb9bf6158
commit 94e2cde27f
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
#
# Copyright 2016 Google Inc. All rights reserved.
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
#
# Copyright 2016 Google Inc. All rights reserved.
#