gitlab.lister: Fix buggy call to self._get_int
Was missing the dict to read from
This commit is contained in:
parent
e24cf1d4f1
commit
5003a0475b
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ class GitLabLister(PageByPageHttpLister):
|
|||
h = response.headers
|
||||
return (self._get_int(h, 'x-total'),
|
||||
self._get_int(h, 'x-total-pages'),
|
||||
self._get_int('x-per-page'))
|
||||
self._get_int(h, 'x-per-page'))
|
||||
|
||||
def transport_response_simplified(self, response):
|
||||
repos = response.json()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue