File: 001-handle-missing-config.patch

package info (click to toggle)
python-gitlab 1%3A4.9.0-1.2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 3,076 kB
  • sloc: python: 24,172; makefile: 167; ruby: 27; javascript: 3
file content (18 lines) | stat: -rw-r--r-- 618 bytes parent folder | download | duplicates (3)
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)