diff options
Diffstat (limited to 'src/pkgdev')
-rw-r--r-- | src/pkgdev/scripts/argparsers.py | 4 | ||||
-rw-r--r-- | src/pkgdev/scripts/pkgdev_bugs.py | 2 |
2 files changed, 4 insertions, 2 deletions
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 |