Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gitlab/__init__.py
Original file line number Diff line number Diff line change
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