Remove print-statements

This commit is contained in:
Richard Schreiber
2026-03-09 14:57:31 +01:00
committed by Raphael Michel
parent 0269832570
commit b588493c43
-2
View File
@@ -255,8 +255,6 @@ class EventWizardBasicsForm(I18nModelForm):
if data.get("team"):
source_event_perms = self.user.get_event_permission_set(self.organizer, self.clone_from)
team_perms = data["team"].event_permission_set(include_legacy=False)
print(source_event_perms)
print(team_perms)
if any(t not in source_event_perms for t in team_perms if ":" in t):
raise ValidationError({
"team": _("You cannot choose a team that would give you more access than you have on "