From 5842d8eba454fdb9b276af343606e3b04e64091f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Tue, 1 Jul 2014 14:20:54 -0400 Subject: [PATCH] Removed non-existent reference to args/kwargs in manager docs. --- docs/topics/db/managers.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/topics/db/managers.txt b/docs/topics/db/managers.txt index 705d721c8d..9e12166a76 100644 --- a/docs/topics/db/managers.txt +++ b/docs/topics/db/managers.txt @@ -296,9 +296,6 @@ returns a *subclass* of your base ``Manager`` with a copy of the custom ``QuerySet`` methods:: class BaseManager(models.Manager): - def __init__(self, *args, **kwargs): - ... - def manager_only_method(self): return @@ -307,14 +304,14 @@ returns a *subclass* of your base ``Manager`` with a copy of the custom return class MyModel(models.Model): - objects = BaseManager.from_queryset(CustomQueryset)(*args, **kwargs) + objects = BaseManager.from_queryset(CustomQueryset)() You may also store the generated class into a variable:: CustomManager = BaseManager.from_queryset(CustomQueryset) class MyModel(models.Model): - objects = CustomManager(*args, **kwargs) + objects = CustomManager() .. _custom-managers-and-inheritance: