Skip to content

Commit ad6cdeb

Browse files
committed
docs: some cleanup and improvements
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
1 parent 8e06b8f commit ad6cdeb

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

doc/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Contents:
88
:maxdepth: 4
99

1010
man/pkgdev
11+
man/pkgdev/bugs
1112
man/pkgdev/commit
1213
man/pkgdev/manifest
1314
man/pkgdev/mask

src/pkgdev/scripts/argparsers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class BugzillaApiKey:
5050
def mangle_argparser(cls, parser):
5151
parser.add_argument(
5252
"--api-key",
53-
metavar="KEY",
53+
metavar="TOKEN",
5454
help="Bugzilla API key",
5555
docs="""
5656
The Bugzilla API key to use for authentication. WARNING: using this
@@ -61,7 +61,7 @@ def mangle_argparser(cls, parser):
6161
[default]
6262
key = <your API key>
6363
64-
ANother supported option is to save your API key in a file named
64+
Another supported option is to save your API key in a file named
6565
``~/.bugz_token``.
6666
""",
6767
)

src/pkgdev/scripts/pkgdev_bugs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"--auto-cc-arches",
5959
action=arghparse.CommaSeparatedNegationsAppend,
6060
default=([], []),
61+
metavar="EMAIL",
6162
help="automatically add CC-ARCHES for the listed email addresses",
6263
docs="""
6364
Comma separated list of email addresses, for which automatically add
@@ -69,6 +70,7 @@
6970
"--find-by-maintainer",
7071
action=arghparse.CommaSeparatedNegationsAppend,
7172
default=([], []),
73+
metavar="EMAIL",
7274
help="collect all packages maintained by the listed email addresses",
7375
docs="""
7476
Comma separated list of email addresses, for which pkgdev will collect

0 commit comments

Comments
 (0)