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 trialJesper Sørensen
540 PointsThis Code works in my vscode editor but not in this ide
?
from django import forms
def not_treehouse(email_end):
email_lowercase = email_end.lower()
if email_lowercase.endswith('@teamtreehouse.com'):
forms.ValidationError('Email is from treehouse staff')
class LeadShareForm(forms.Form):
email = forms.EmailField()
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
1 Answer
KRIS NIKOLAISEN
54,971 PointsSee this video @ 2:39. You are missing something.
Jesper Sørensen
540 PointsJesper Sørensen
540 Pointsyes I found out. I missed the 'raise' before the 'forms.ValidationError('Email is from treehouse staff')' Thanks!