mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
Fixed typo
This commit is contained in:
parent
99a3fcd361
commit
7f602f60cd
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class SnippetForm(forms.ModelForm):
|
||||||
def clean_content(self):
|
def clean_content(self):
|
||||||
content = self.cleaned_data.get('content', '')
|
content = self.cleaned_data.get('content', '')
|
||||||
if content.strip() == '':
|
if content.strip() == '':
|
||||||
raise forms.ValidationError(_('Plesae fill out this field.'))
|
raise forms.ValidationError(_('Please fill out this field.'))
|
||||||
return content
|
return content
|
||||||
|
|
||||||
def clean_expires(self):
|
def clean_expires(self):
|
||||||
|
|
Loading…
Reference in a new issue