From 7f602f60cd51b03a8e8c0cac0652ee1ba95cf55e Mon Sep 17 00:00:00 2001 From: Sergio Oliveira Date: Mon, 20 Oct 2014 12:13:03 -0200 Subject: [PATCH] Fixed typo --- dpaste/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dpaste/forms.py b/dpaste/forms.py index e248dcc..703d1f5 100644 --- a/dpaste/forms.py +++ b/dpaste/forms.py @@ -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):