Merge pull request #345 from T4m/patch-1

Update managers.rst
fix_request_path_info
Diederik van der Boor 2018-04-16 10:24:26 +02:00 committed by GitHub
commit 3417d466c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -83,5 +83,5 @@ instead of Django's QuerySet as the base class::
...
class MyModel(PolymorphicModel):
my_objects = PolymorphicManager.from_queryset(MyQuerySet)
my_objects = PolymorphicManager.from_queryset(MyQuerySet)()
...