diff options
| author | Ville Skyttä <ville.skytta@iki.fi> | 2019-04-14 10:44:56 +0300 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-04-18 09:33:53 +0200 |
| commit | 03db5fddfd0c76303ec83eb1cd91a6d2dc4441cb (patch) | |
| tree | e269b21b92c6b771ddc0f8e08fc7a1a6ad62643a /django/forms/forms.py | |
| parent | 177fa08339c4908afbefbda5dceabe72641ec915 (diff) | |
Fixed typos in docs, comments, and exception messages.
Diffstat (limited to 'django/forms/forms.py')
| -rw-r--r-- | django/forms/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
