Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMatteo Morena
10,207 PointsBummer! Make sure the validator does not allow @teamtreehouse.com email addresses.
I can't understand why I get this error: "Bummer! Make sure the validator does not allow @teamtreehouse.com email addresses.". What's wrong?
from django import forms
from django.core import validators
def not_treehouse(value):
if value.strip().lower().endswith("@teamtreehouse.com"):
raise forms.ValidationError("The email address can't be from any Treehouse coworkers.")
class LeadShareForm(forms.Form):
email = forms.EmailField()
link = forms.URLField()
honeypot = forms.CharField(widget=forms.HiddenInput, required=False, validators=[not_treehouse])
1 Answer
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 PointsYou have simple put the validator in the wrong place. You are supposed to validate the email
email = forms.EmailField(validators=[not_treehouse])
Matteo Morena
10,207 PointsMatteo Morena
10,207 PointsOoh, you're right! Thanks! I can't believe I didn't notice...