diff options
author | IIMarckus <iimarckus@gmail.com> | 2012-03-14 20:44:07 -0600 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2012-03-14 20:44:07 -0600 |
commit | 7a566260e6b324f40a58f4f4967718a2d95a4d8c (patch) | |
tree | 8a389c1bcac39d3e28877bc34b1942e27e572fe7 /extras/analyze_incbins.py | |
parent | 41d6f23943f655ce45a005bdb00d25c239f14ffd (diff) |
Remove python shebangs.
- Not all systems have /usr/bin/python
- On those that do, it is not always python 2
- These files aren't marked executable anyway
Just use "python whatever.py" via shell instead.
hg-commit-id: 09184f4c838d
Diffstat (limited to 'extras/analyze_incbins.py')
-rw-r--r-- | extras/analyze_incbins.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extras/analyze_incbins.py b/extras/analyze_incbins.py index 0684b027..b52f0e15 100644 --- a/extras/analyze_incbins.py +++ b/extras/analyze_incbins.py @@ -1,8 +1,7 @@ -#!/usr/bin/python2.7 #author: Bryan Bishop <kanzure@gmail.com> #date: 2012-01-03 #purpose: map which addresses are left -#note: using python2.7 because of subprocess +#note: use python2.7 because of subprocess import sys, os from copy import copy, deepcopy import subprocess |