Fixed typo

This commit is contained in:
Sergio Oliveira 2014-10-20 12:13:03 -02:00
parent 832645f129
commit ae2de8ef9c

View file

@ -82,7 +82,7 @@ class SnippetForm(forms.ModelForm):
def clean_content(self):
content = self.cleaned_data.get('content', '')
if content.strip() == '':
raise forms.ValidationError(_('Plesae fill out this field.'))
raise forms.ValidationError(_('Please fill out this field.'))
return content
def clean_expires(self):