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 trialHeidi Ulrich
4,624 PointsPlease find the error in my code
There must be an error in this; I keep getting 'Bummer! Try again!' but I cannot spot it. Help welcome!
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 not_treehouse(value):
value = value.lower()
if value.endswith('@teamtreehouse.com'):
raise forms.ValidationError('Walk over and say it in my face!')
return value
def clean_honeypot(self):
honey = self.cleaned_data['honeypot']
if len(honey):
raise forms.ValidationError('Bad robot!')
return honey
2 Answers
james south
Front End Web Development Techdegree Graduate 33,271 Pointsyour code worked for me by taking it out of the class. put it under the clean honeypot but don't indent your function and it will pass.
Heidi Ulrich
4,624 PointsI did exactly what you advised here... but it doesn't pass still. Have checked to have the right amount of indentation after moving it.
...ah, now it works. I put it above the class, so it exists before the class calls it.
Thank you James!