From 03db5fddfd0c76303ec83eb1cd91a6d2dc4441cb Mon Sep 17 00:00:00 2001 From: Ville Skyttä Date: Sun, 14 Apr 2019 10:44:56 +0300 Subject: Fixed typos in docs, comments, and exception messages. --- django/forms/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/forms/forms.py') diff --git a/django/forms/forms.py b/django/forms/forms.py index 3898419ab2..0ab25643da 100644 --- a/django/forms/forms.py +++ b/django/forms/forms.py @@ -189,7 +189,7 @@ class BaseForm: return '%s-%s' % (self.prefix, field_name) if self.prefix else field_name def add_initial_prefix(self, field_name): - """Add a 'initial' prefix for checking dynamic initial values.""" + """Add an 'initial' prefix for checking dynamic initial values.""" return 'initial-%s' % self.add_prefix(field_name) def _html_output(self, normal_row, error_row, row_ender, help_text_html, errors_on_separate_row): -- cgit v1.3