aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
diff options
context:
space:
mode:
authorTom Christie2014-09-05 20:34:43 +0100
committerTom Christie2014-09-05 20:34:43 +0100
commitf4e02446f99cef42f18f57a2712c435a84451868 (patch)
tree670d5b29e39e0fb949d685a145b365cd5a3a007f /rest_framework
parent2b47c6b700be530605bd30f0afe7214ea376bd13 (diff)
parentab213cbc41114ec9417630d5298546102a706b96 (diff)
downloaddjango-rest-framework-f4e02446f99cef42f18f57a2712c435a84451868.tar.bz2
Merge pull request #1836 from jpadilla/filter-ordering
Preserve default ordering when using filtering
Diffstat (limited to 'rest_framework')
-rw-r--r--rest_framework/filters.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/rest_framework/filters.py b/rest_framework/filters.py
index e2080013..c580f935 100644
--- a/rest_framework/filters.py
+++ b/rest_framework/filters.py
@@ -56,7 +56,6 @@ class DjangoFilterBackend(BaseFilterBackend):
class Meta:
model = queryset.model
fields = filter_fields
- order_by = True
return AutoFilterSet
return None