diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-12-30 14:51:43 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-12-30 14:51:43 +0200 |
commit | ad6cdebbc8c094dc6736d34bb7a79c7ed0227f10 (patch) | |
tree | 07f395bbb0c5fe5c0937f8860d5c33d186cc1a1a | |
parent | coverage: skip pkgdev bugs for now (diff) | |
download | pkgdev-ad6cdebbc8c094dc6736d34bb7a79c7ed0227f10.tar.gz pkgdev-ad6cdebbc8c094dc6736d34bb7a79c7ed0227f10.tar.bz2 pkgdev-ad6cdebbc8c094dc6736d34bb7a79c7ed0227f10.zip |
docs: some cleanup and improvements
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r-- | doc/index.rst | 1 | ||||
-rw-r--r-- | src/pkgdev/scripts/argparsers.py | 4 | ||||
-rw-r--r-- | src/pkgdev/scripts/pkgdev_bugs.py | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/doc/index.rst b/doc/index.rst index 8570603..8fa4ae2 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -8,6 +8,7 @@ Contents: :maxdepth: 4 man/pkgdev + man/pkgdev/bugs man/pkgdev/commit man/pkgdev/manifest man/pkgdev/mask diff --git a/src/pkgdev/scripts/argparsers.py b/src/pkgdev/scripts/argparsers.py index 76479ff..5cefeca 100644 --- a/src/pkgdev/scripts/argparsers.py +++ b/src/pkgdev/scripts/argparsers.py @@ -50,7 +50,7 @@ class BugzillaApiKey: def mangle_argparser(cls, parser): parser.add_argument( "--api-key", - metavar="KEY", + metavar="TOKEN", help="Bugzilla API key", docs=""" The Bugzilla API key to use for authentication. WARNING: using this @@ -61,7 +61,7 @@ class BugzillaApiKey: [default] key = <your API key> - ANother supported option is to save your API key in a file named + Another supported option is to save your API key in a file named ``~/.bugz_token``. """, ) diff --git a/src/pkgdev/scripts/pkgdev_bugs.py b/src/pkgdev/scripts/pkgdev_bugs.py index fb60ff1..1a5cd0d 100644 --- a/src/pkgdev/scripts/pkgdev_bugs.py +++ b/src/pkgdev/scripts/pkgdev_bugs.py @@ -58,6 +58,7 @@ bugs.add_argument( "--auto-cc-arches", action=arghparse.CommaSeparatedNegationsAppend, default=([], []), + metavar="EMAIL", help="automatically add CC-ARCHES for the listed email addresses", docs=""" Comma separated list of email addresses, for which automatically add @@ -69,6 +70,7 @@ bugs.add_argument( "--find-by-maintainer", action=arghparse.CommaSeparatedNegationsAppend, default=([], []), + metavar="EMAIL", help="collect all packages maintained by the listed email addresses", docs=""" Comma separated list of email addresses, for which pkgdev will collect |