diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2009-05-18 15:36:18 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2009-05-18 15:36:18 +0000 |
| commit | 5a5842ccf2ff19ba8f459cd0b0930db0dde3fc23 (patch) | |
| tree | 4696fc907aeadc4379b27e4aca7797940f6771a7 /docs | |
| parent | a6a0b29318e437de1f97329e6a5490d62fb36d3d (diff) | |
Fixed #11137 -- Add missing base class in proxy model extra managers doc. Thanks ekarulf.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/db/models.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt index 55d4ace0a9..a28e7e8805 100644 --- a/docs/topics/db/models.txt +++ b/docs/topics/db/models.txt @@ -1101,7 +1101,7 @@ manager <custom-managers-and-inheritance>` documentation: create a base class containing the new managers and inherit that after the primary base class:: # Create an abstract class for the new manager. - class ExtraManagers: + class ExtraManagers(models.Model): secondary = NewManager() class Meta: |
