Browse Source

[bugfix] Paginator should not start at 0 by default

pull/54/head
Andrei 8 years ago
parent
commit
4244727cfc
  1. 1
      CHANGELOG.md
  2. 2
      disco/util/paginator.py

1
CHANGELOG.md

@ -5,6 +5,7 @@
### Fixes
- Fixed `Paginator` throwing an exception when reaching the end of pagination, instead of just ending its iteration
- Fixed `Paginator` defaulting to start at 0 for all iterations
## v0.0.11

2
disco/util/paginator.py

@ -13,7 +13,7 @@ class Paginator(object):
self._key = kwargs.pop('key', operator.attrgetter('id'))
self._bulk = kwargs.pop('bulk', False)
self._sort_key_value = kwargs.pop(self.sort_key, 0)
self._sort_key_value = kwargs.pop(self.sort_key, None)
self._buffer = []
def fill(self):

Loading…
Cancel
Save