diff options
| author | Simon Charette <charette.s@gmail.com> | 2014-11-21 15:58:53 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-11-21 15:59:54 -0500 |
| commit | cc5aa809e2519366e9df6581e5990ac4b41b0e24 (patch) | |
| tree | fb00273293b35ef48c97e7f7d650e90c200594c3 | |
| parent | 4ea39230fc2c77cc091ebbbdb3d445920b299746 (diff) | |
[1.7.x] Fixed typo in forms/models.py comment.
Backport of a7c3d0f288a66d327e71476e9a9bfcc791602b8c from master
| -rw-r--r-- | django/forms/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/models.py b/django/forms/models.py index 16cc459175..0f1f54f850 100644 --- a/django/forms/models.py +++ b/django/forms/models.py @@ -569,7 +569,7 @@ class BaseModelFormSet(BaseFormSet): def _get_to_python(self, field): """ If the field is a related field, fetch the concrete field's (that - is, the ultimate pointed-to field's) get_prep_value. + is, the ultimate pointed-to field's) to_python. """ while field.rel is not None: field = field.rel.get_related_field() |
