Skip to content

Commit

Permalink
docs: some cleanup and improvements
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
  • Loading branch information
arthurzam committed Dec 30, 2023
1 parent 8e06b8f commit ad6cdeb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Contents:
:maxdepth: 4

man/pkgdev
man/pkgdev/bugs
man/pkgdev/commit
man/pkgdev/manifest
man/pkgdev/mask
Expand Down
4 changes: 2 additions & 2 deletions src/pkgdev/scripts/argparsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -61,7 +61,7 @@ def mangle_argparser(cls, parser):
[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``.
""",
)
Expand Down
2 changes: 2 additions & 0 deletions src/pkgdev/scripts/pkgdev_bugs.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"--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
Expand All @@ -69,6 +70,7 @@
"--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
Expand Down

0 comments on commit ad6cdeb

Please sign in to comment.