1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Federico Ceratto <federico@debian.org>
Subject: Handle missing config file
Forwarded: no
--- a/gitlab/cli.py
+++ b/gitlab/cli.py
@@ -350,6 +350,11 @@
try:
config = gitlab.config.GitlabConfigParser(options.gitlab, options.config_file)
except gitlab.config.ConfigError as e:
+ if "Impossible to get the gitlab id" in str(e):
+ sys.exit("""
+Please create a configuration file at ~/.python-gitlab.cfg
+See /usr/share/doc/gitlab-cli/examples/python-gitlab.cfg
+""")
if "--help" in sys.argv or "-h" in sys.argv:
parser.print_help()
sys.exit(0)
|