From ff1993a95a5402f08c7c0d42e6ae4d8a781f770e Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 29 Jan 2026 09:20:27 +0100 Subject: [PATCH] Update src/pretix/base/models/mail.py Co-authored-by: Martin Gross --- src/pretix/base/models/mail.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pretix/base/models/mail.py b/src/pretix/base/models/mail.py index edb686c8d2..5afb3e07a7 100644 --- a/src/pretix/base/models/mail.py +++ b/src/pretix/base/models/mail.py @@ -29,7 +29,6 @@ from django_scopes import scope, scopes_disabled def CASCADE_IF_QUEUED(collector, field, sub_objs, using): # If the email is still queued and the thing it is related to vanishes, the email can vanish as well - print(sub_objs) cascade_objs = [ o for o in sub_objs if o.status == OutgoingMail.STATUS_QUEUED ]