diff options
-rw-r--r-- | gitlab/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 0e6e52f..48f8da5 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -590,7 +590,7 @@ class Gitlab(object): # 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: |