diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt index cc2e44f09c..45d4d86c40 100644 --- a/docs/releases/1.6.txt +++ b/docs/releases/1.6.txt @@ -1122,7 +1122,8 @@ a ``get_queryset_compat`` method as below and use it internally to your manager: def get_queryset(self): return YourCustomQuerySet() # for example - get_query_set = get_queryset + if django.VERSION < (1, 6): + get_query_set = get_queryset def active(self): # for example return self.get_queryset_compat().filter(active=True)