Skip to content

Commit

Permalink
Merge pull request #701 from jpiron/fix_all_behaviour
Browse files Browse the repository at this point in the history
Fix all kwarg behaviour
  • Loading branch information
gpocentek committed Feb 20, 2019
2 parents 31bca2f + 6b2bf5b commit 8ce4e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitlab/__init__.py
Expand Up @@ -590,7 +590,7 @@ def http_list(self, path, query_data={}, as_list=None, **kwargs):
# In case we want to change the default behavior at some point
as_list = True if as_list is None else as_list

get_all = kwargs.get('all', False)
get_all = kwargs.pop('all', False)
url = self._build_url(path)

if get_all is True:
Expand Down

0 comments on commit 8ce4e9e

Please sign in to comment.