summaryrefslogtreecommitdiff
path: root/gitlab.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab.py')
-rw-r--r--gitlab.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab.py b/gitlab.py
index 2dc3f7a..d417eae 100644
--- a/gitlab.py
+++ b/gitlab.py
@@ -143,6 +143,8 @@ class Gitlab(object):
l = [cls(self, item) for item in r.json]
if kwargs:
for k, v in kwargs.items():
+ if k in ('page', 'per_page'):
+ continue
for obj in l:
obj.__dict__[k] = v
return l