From 05712ba2d9003a955b02892e6f4556fe73bcc6c9 Mon Sep 17 00:00:00 2001 From: gtrivedi Date: Thu, 27 Mar 2014 23:11:12 -0400 Subject: [PATCH] Removed debug print --- kivy/core/image/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kivy/core/image/__init__.py b/kivy/core/image/__init__.py index 0951d1c0b..61d7fbe94 100644 --- a/kivy/core/image/__init__.py +++ b/kivy/core/image/__init__.py @@ -182,7 +182,7 @@ class ImageLoaderBase(object): imagedata = self._data[count] imagedata.source = '{}{}|{}'.format( 'zip|' if self.filename.endswith('.zip') else '', - self._nocache, uid) + self._nocache, uid) texture = Texture.create_from_data( imagedata, mipmap=self._mipmap) if not self._nocache: @@ -740,7 +740,6 @@ class Image(EventDispatcher): fmt = 'rgba' else: raise Exception('Unable to determine the format of the pixels') - Logger.debug('Image%s: Saving with vertical flip <%s>' % (loader.__name__[11:], str(flipped))) return loader.save(filename, size[0], size[1], fmt, pixels, flipped) def read_pixel(self, x, y):