Skip to content

Commit ba5f5a1

Browse files
committed
changing #!/usr/bin/env python to #!/usr/bin/env python2.7
1 parent 317f25c commit ba5f5a1

14 files changed

+14
-14
lines changed

chromium/setversion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22
import json
33
from datetime import date
44

utils/check_certs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22

33
import sys
44
import re

utils/chromium-preloads.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22

33
# autogenerate sample versions of rules from Chromium browser's HSTS
44
# preload list (in the from-preloads/ directory)

utils/create_xpi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22

33
# Uses the Python zip implementation to create deterministic XPI's
44
# Author: Yan Zhu, yan@mit.edu

utils/dbconnect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22
import MySQLdb
33

44
try: from db_private import DB_USER

utils/find_rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22
"""
33
Copyleft 2013 Osama Khalid.
44

utils/make-sqlite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22
#
33
# Builds an sqlite DB containing all the rulesets, indexed by target.
44

utils/merge-rulesets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22

33
# Merge all the .xml rulesets into a single "default.rulesets" file -- this
44
# prevents inodes from wasting disk space, but more importantly, works around

utils/mk_client_whitelist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22

33
# Make a list of the current top 1,000 certs to whitelist from the
44
# Decentralized SSL Observatory's client submissions, to live in

utils/simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2.7
22

33
from lxml import etree
44
import regex

0 commit comments

Comments
 (0)