From 8655209b4a707dd61105db583089d84fd48e5bcb Mon Sep 17 00:00:00 2001 From: wiredfool Date: Tue, 22 Oct 2013 09:24:51 -0700 Subject: [PATCH] rm debugging print --- PIL/TiffImagePlugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/TiffImagePlugin.py b/PIL/TiffImagePlugin.py index 3a77525f3..24d177f2d 100644 --- a/PIL/TiffImagePlugin.py +++ b/PIL/TiffImagePlugin.py @@ -1046,7 +1046,7 @@ def _save(im, fp, filename): rawmode = 'I;16N' a = (rawmode, compression, _fp, filename, atts) - print (im.mode, compression, a, im.encoderconfig) + # print (im.mode, compression, a, im.encoderconfig) e = Image._getencoder(im.mode, compression, a, im.encoderconfig) e.setimage(im.im, (0,0)+im.size) while 1: