diff options
| author | Tim Graham <timograham@gmail.com> | 2015-03-17 09:08:02 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-03-17 09:08:02 -0400 |
| commit | 71c638fc55d5b0637e0c50a71694f3e422caa0c1 (patch) | |
| tree | 23fc7b7e90c3944d051bc565ac840ec1bc15e8b1 | |
| parent | 88d798d71a20662bdf5335f0586fb9eb6e660c57 (diff) | |
Fixed typo in refs #15579 comment.
| -rw-r--r-- | django/db/models/deletion.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/db/models/deletion.py b/django/db/models/deletion.py index 23bc55ae5d..0adfb7f159 100644 --- a/django/db/models/deletion.py +++ b/django/db/models/deletion.py @@ -190,8 +190,7 @@ class Collector(object): models, the one case in which the cascade follows the forwards direction of an FK rather than the reverse direction.) - If 'keep_parents' is False, data of parent's models will be not - deleted. + If 'keep_parents' is True, data of parent model's will be not deleted. """ if self.can_fast_delete(objs): self.fast_deletes.append(objs) |
