From 94f5ba7d1a82b5c35fb34590347648b02287c45f Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 20 Mar 2018 11:59:25 +0100 Subject: [PATCH] Remove print statement --- src/pretix/helpers/thumb.py | 1 - 1 file changed, 1 deletion(-) 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)