From 5a5842ccf2ff19ba8f459cd0b0930db0dde3fc23 Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Mon, 18 May 2009 15:36:18 +0000 Subject: [PATCH] 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 --- docs/topics/db/models.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ` 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: