summaryrefslogtreecommitdiff
path: root/tools/image_importer/image_importer.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/image_importer/image_importer.py')
-rwxr-xr-xtools/image_importer/image_importer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/image_importer/image_importer.py b/tools/image_importer/image_importer.py
index 77508e1b6..f849e8879 100755
--- a/tools/image_importer/image_importer.py
+++ b/tools/image_importer/image_importer.py
@@ -25,9 +25,9 @@ if (len(sys.argv) < 3):
img = Image.open(sys.argv[1])
outfile = sys.argv[2]
-print "Image format = ", img.bits, img.size, img.format
+print("Image format = ", img.bits, img.size, img.format)
with open(outfile, 'wb') as f:
f.write(img.tobytes())
-print "Done."
+print("Done.")