diff --git a/src/pretix/helpers/thumb.py b/src/pretix/helpers/thumb.py index 48a85cacb0..bba03ff2dc 100644 --- a/src/pretix/helpers/thumb.py +++ b/src/pretix/helpers/thumb.py @@ -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)