1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 06:48:16 +00:00

fix python shebangs

This commit is contained in:
Pavol Rusnak 2016-05-24 20:31:01 +02:00
parent 94b6733a6e
commit c691f9b5e9
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
7 changed files with 7 additions and 10 deletions

View File

@ -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:]

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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