summaryrefslogtreecommitdiff
path: root/gitlab/v4/cli.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2018-03-11 19:58:57 +0100
committerGauvain Pocentek <gauvain@pocentek.net>2018-03-11 19:58:57 +0100
commit9cb6bbedd350a2241113fe1d731b4cfe56c19d4f (patch)
treed0e85ccbc84f463dcfbb9bd89d803ea44f315df8 /gitlab/v4/cli.py
parentcb8ca6516befa4d3421cf734b4c72ec75ddeb654 (diff)
downloadgitlab-9cb6bbedd350a2241113fe1d731b4cfe56c19d4f.tar.gz
pep8 fix
Diffstat (limited to 'gitlab/v4/cli.py')
-rw-r--r--gitlab/v4/cli.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gitlab/v4/cli.py b/gitlab/v4/cli.py
index 7199e83..bceba33 100644
--- a/gitlab/v4/cli.py
+++ b/gitlab/v4/cli.py
@@ -240,7 +240,8 @@ def extend_parser(parser):
arg_name = cli.cls_to_what(cls)
object_group = subparsers.add_parser(arg_name)
- object_subparsers = object_group.add_subparsers(title='action',
+ object_subparsers = object_group.add_subparsers(
+ title='action',
dest='action', help="Action to execute.")
_populate_sub_parser_by_class(cls, object_subparsers)
object_subparsers.required = True