From d68cacfeda5599c62a593ecb9da2505c22326644 Mon Sep 17 00:00:00 2001 From: John Villalovos Date: Mon, 9 May 2022 14:53:32 -0700 Subject: fix(cli): changed default `allow_abbrev` value to fix arguments collision problem (#2013) fix(cli): change default `allow_abbrev` value to fix argument collision --- gitlab/cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gitlab/cli.py') diff --git a/gitlab/cli.py b/gitlab/cli.py index f06f49d..cad6b6f 100644 --- a/gitlab/cli.py +++ b/gitlab/cli.py @@ -106,7 +106,9 @@ def cls_to_what(cls: RESTObject) -> str: def _get_base_parser(add_help: bool = True) -> argparse.ArgumentParser: parser = argparse.ArgumentParser( - add_help=add_help, description="GitLab API Command Line Interface" + add_help=add_help, + description="GitLab API Command Line Interface", + allow_abbrev=False, ) parser.add_argument("--version", help="Display the version.", action="store_true") parser.add_argument( -- cgit v1.2.1