From 1f7f23426436cfbb108451d757bcc3214bf6805d Mon Sep 17 00:00:00 2001 From: cgohlke Date: Sat, 25 Feb 2012 20:00:39 -0800 Subject: [PATCH] Fix invalid Python 3 syntax --- skimage/io/tests/test_freeimage.py | 1 - 1 file changed, 1 deletion(-) diff --git a/skimage/io/tests/test_freeimage.py b/skimage/io/tests/test_freeimage.py index 05ce5258..50fef9ee 100644 --- a/skimage/io/tests/test_freeimage.py +++ b/skimage/io/tests/test_freeimage.py @@ -37,7 +37,6 @@ def test_imread_uint16_big_endian(): class TestSave: def roundtrip(self, dtype, x, suffix): - print dtype, x.shape, suffix f = NamedTemporaryFile(suffix='.'+suffix) fname = f.name f.close()