diff --git a/recruitment/forms.py b/recruitment/forms.py index eddb1eb..ebca72b 100644 --- a/recruitment/forms.py +++ b/recruitment/forms.py @@ -959,7 +959,6 @@ class HiringAgencyForm(forms.ModelForm): # instance = self.instance email = email.lower().strip() if not instance.pk: # Creating new instance - print("created ....") if HiringAgency.objects.filter(email=email).exists() or User.objects.filter(email=email): raise ValidationError("An agency with this email already exists.") else: # Editing existing instance