incorrect use of whitespace

This commit is contained in:
wiredfool 2016-05-29 13:26:32 -07:00
parent d3b0413780
commit 653b170385

View File

@ -225,7 +225,7 @@ class ImageFile(Image.Image):
n, err_code = decoder.decode(b)
if n < 0:
break
b = b[n:]
b = b[n:]
# Need to cleanup here to prevent leaks in PyPy
decoder.cleanup()