Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

peter xiao
2,626 PointsDo not know why I got Bummer
Not sure why the code failed
from django import forms
class LeadShareForm(forms.Form):
email = forms.EmailField(validators=[not_treehouse])
link = forms.URLField()
honeypot = forms.CharField(widget=forms.HiddenInput, required=False)
def clean_honeypot(self):
honey = self.cleaned_data['honeypot']
if len(honey):
raise forms.ValidationError('Bad robot!')
return honey
def not_treehouse(value: str):
vv =value.strip(" ").lower()
if vv.endswith("@teamtreehouse.com"):
raise forms.ValidationError("error")
1 Answer

Chris Freeman
Treehouse Moderator 68,227 PointsSo close!! The validator function needs to be defined before it's referred to by the class. Move the not_treehouse
definition above the class and it should pass.
Post back if you have more questions. Good Luck!!