Remove print statement

This commit is contained in:
Raphael Michel
2018-03-20 11:59:25 +01:00
parent e7458f3032
commit 94f5ba7d1a

View File

@@ -52,7 +52,6 @@ def create_thumbnail(source, size):
scale, crop = get_sizes(size, image.size)
image = image.resize(scale)
print(scale, crop)
if crop:
image = image.crop(crop)