0
0
mirror of https://github.com/django/django.git synced 2024-12-01 15:42:04 +01:00

Fixed #12688 -- Removed typo in manager docs. Thanks, orokusaki for the report and timo for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12485 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Justin Bronn 2010-02-22 02:35:47 +00:00
parent 84cffa2ece
commit 9810178706

View File

@ -235,7 +235,7 @@ this base class::
class AbstractBase(models.Model):
...
objects = CustomerManager()
objects = CustomManager()
class Meta:
abstract = True