fix python shebangs

pull/25/head
Pavol Rusnak 8 years ago
parent 94b6733a6e
commit c691f9b5e9
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python2
bl = open('bl.bin').read()
fw = open('fw.bin').read()
combined = bl + fw[:256] + (32768-256)*'\x00' + fw[256:]

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python2
import sys
import os

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python2
import argparse
import hashlib
import struct

@ -1,5 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python2
import hashlib
import os
import subprocess

@ -1,5 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python2
import glob
import os
from PIL import Image

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python2
from PIL import Image
class Img(object):

@ -1,5 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python2
handlers = [
'hard_fault_handler',
'mem_manage_handler',

Loading…
Cancel
Save