We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8caddc commit 6fe2988Copy full SHA for 6fe2988
gitlab/cli.py
@@ -133,7 +133,7 @@ def _parse_value(v):
133
def main():
134
if "--version" in sys.argv:
135
print(gitlab.__version__)
136
- exit(0)
+ sys.exit(0)
137
138
parser = _get_base_parser(add_help=False)
139
@@ -149,7 +149,7 @@ def main():
149
except gitlab.config.ConfigError as e:
150
if "--help" in sys.argv or "-h" in sys.argv:
151
parser.print_help()
152
153
sys.exit(e)
154
cli_module = importlib.import_module('gitlab.v%s.cli' % config.api_version)
155
0 commit comments