diff options
| author | Tom Christie | 2014-09-05 20:34:43 +0100 | 
|---|---|---|
| committer | Tom Christie | 2014-09-05 20:34:43 +0100 | 
| commit | f4e02446f99cef42f18f57a2712c435a84451868 (patch) | |
| tree | 670d5b29e39e0fb949d685a145b365cd5a3a007f /rest_framework | |
| parent | 2b47c6b700be530605bd30f0afe7214ea376bd13 (diff) | |
| parent | ab213cbc41114ec9417630d5298546102a706b96 (diff) | |
| download | django-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.py | 1 | 
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 | 
