diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-08-20 20:21:46 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-08-20 20:21:46 +0200 |
commit | 59550f27feaf20cfeb65511292906f99f64b6745 (patch) | |
tree | 53a1a53ea1eedbfac213835ce55338fb597e5341 | |
parent | abade405af9099a136b68d0eb19027d038dab60b (diff) | |
download | gitlab-59550f27feaf20cfeb65511292906f99f64b6745.tar.gz |
make v3 CLI work again
-rw-r--r-- | gitlab/v3/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v3/cli.py b/gitlab/v3/cli.py index b0450e8..ae16cf7 100644 --- a/gitlab/v3/cli.py +++ b/gitlab/v3/cli.py @@ -462,7 +462,7 @@ def extend_parser(parser): return parser -def run(gl, what, action, args, verbose): +def run(gl, what, action, args, verbose, *fargs, **kwargs): try: cls = gitlab.v3.objects.__dict__[cli.what_to_cls(what)] except ImportError: |