mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-10-02 07:37:08 +02:00
fix print sintax
This commit is contained in:
parent
3295132946
commit
7421f7d029
@ -19,7 +19,7 @@ def split_binary(data):
|
|||||||
|
|
||||||
def main(argc, argv):
|
def main(argc, argv):
|
||||||
if argc != 3:
|
if argc != 3:
|
||||||
print 'Usage: %s in outdir' % argv[0]
|
print ('Usage: %s in outdir' % argv[0])
|
||||||
return 1
|
return 1
|
||||||
with open(argv[1], 'rb') as f:
|
with open(argv[1], 'rb') as f:
|
||||||
data = f.read()
|
data = f.read()
|
||||||
|
Loading…
Reference in New Issue
Block a user