diff options
| author | Tom Christie | 2014-01-02 23:26:25 -0800 |
|---|---|---|
| committer | Tom Christie | 2014-01-02 23:26:25 -0800 |
| commit | 4caa9416e50edf3f9d73ed5dadbd3e86ae6c65ed (patch) | |
| tree | e933d3a86cef730cb397645a02cf1ee2b40f339e | |
| parent | 12d1544101e415fe473471eb8c6a2d7aeccd9112 (diff) | |
| parent | 0672d6de6e47ba0269a58ad0da3cc7ff4c82908e (diff) | |
| download | django-rest-framework-4caa9416e50edf3f9d73ed5dadbd3e86ae6c65ed.tar.bz2 | |
Merge pull request #1325 from kevin-brown/compat_fix
Fix bugfix note
| -rw-r--r-- | docs/topics/release-notes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index b09bd0be..ca966d20 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -98,7 +98,7 @@ You can determine your currently installed version using `pip freeze`: class DisablePaginationMixin(object): def get_paginate_by(self, queryset=None): - if self.request.QUERY_PARAMS['self.paginate_by_param'] == '0': + if self.request.QUERY_PARAMS[self.paginate_by_param] == '0': return None return super(DisablePaginationMixin, self).get_paginate_by(queryset) |
