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.

Oszkár Fehér
Treehouse Project ReviewerAnd i thought i don't understand the 1st question... ...till i saw the 2nd one
now for me the next logical step it would be:
honeypot = forms.CharField(widget=forms.HiddenInput, required=False, validators=[not_treehouse("@teamtreehouse.com")])
yet it's not working. even without the argument
so what i miss again :((
from django import forms
def not_treehouse(value):
if value.lower().endswith("@teamtreehouse.com"):
raise forms.ValidationError('Bad bot')
class LeadShareForm(forms.Form):
email = forms.EmailField()
link = forms.URLField()
honeypot = forms.CharField(widget=forms.HiddenInput, required=False, validators=[not_treehouse])
def clean_honeypot(self):
honey = self.cleaned_data['honeypot']
if len(honey):
raise forms.ValidationError('Bad robot!')
return honey
1 Answer

Andreas cormack
Python Web Development Techdegree Graduate 33,011 PointsHi Oszkar
You are validating the wrong field. Add the validation to the email field, and also import validators. That should pass the challenge.
this worked for me.
from django import forms
from django.core import validators
def not_treehouse(value):
if value.lower().endswith("@teamtreehouse.com"):
raise forms.ValidationError("cant be a member of team!")
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