summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvainpocentek@gmail.com>2019-02-20 19:39:42 +0100
committerGitHub <noreply@github.com>2019-02-20 19:39:42 +0100
commit8ce4e9e07913d9b9bb916d079ff0a7c528830a2d (patch)
tree5d38fa8e5b3a3b7b8bf41684b225b4f99dbf1cf0
parent31bca2f9ee55ffa69d34f4584e90da01d3f6325e (diff)
parent6b2bf5b29c235243c11bbc994e7f2540a6a3215e (diff)
downloadgitlab-8ce4e9e07913d9b9bb916d079ff0a7c528830a2d.tar.gz
Merge pull request #701 from jpiron/fix_all_behaviour
Fix all kwarg behaviour
-rw-r--r--gitlab/__init__.py2
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: