Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit f3d13af

Browse files
committedNov 22, 2011
Fixed Python 2 scripts prologue (i.e. #!/usr/bin/env python2).
1 parent 2198fd8 commit f3d13af

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎configure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2
22
#
33
# Copyright 2001 Google Inc. All Rights Reserved.
44
#

‎misc/ninja_syntax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python2
22

33
"""Python module for generating .ninja files.
44

‎misc/ninja_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2
22

33
# Copyright 2011 Google Inc. All Rights Reserved.
44
#

‎src/browse.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python2
22
#
33
# Copyright 2001 Google Inc. All Rights Reserved.
44
#

0 commit comments

Comments
 (0)
This repository has been archived.