Removed debug print

This commit is contained in:
gtrivedi 2014-03-27 23:11:12 -04:00
parent 2406b864a4
commit 05712ba2d9
1 changed files with 1 additions and 2 deletions

View File

@ -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):