aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2022-08-11 22:35:27 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2022-08-11 22:35:27 +0300
commit7b96afbdfc8f21fa3656244e4f85636cbc9173f6 (patch)
treef049d58c82ec85a7083886f46977f8bbb2b400e1 /doc
parentrequirements: bump snakeoil, pkgcore deps for py3.11 (diff)
downloadpkgcheck-7b96afbdfc8f21fa3656244e4f85636cbc9173f6.tar.gz
pkgcheck-7b96afbdfc8f21fa3656244e4f85636cbc9173f6.tar.bz2
pkgcheck-7b96afbdfc8f21fa3656244e4f85636cbc9173f6.zip
docs: fix newlines & links
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/generate/pkgcheck/checks.py2
-rwxr-xr-xdoc/generate/pkgcheck/keywords.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/generate/pkgcheck/checks.py b/doc/generate/pkgcheck/checks.py
index 727c1c6e..04ff7289 100755
--- a/doc/generate/pkgcheck/checks.py
+++ b/doc/generate/pkgcheck/checks.py
@@ -61,7 +61,7 @@ def main(f=sys.stdout, **kwargs):
explanation = '\n'.join(dedent(explanation).strip().split('\n'))
out('\n' + explanation)
if issubclass(check, GentooRepoCheck):
- out(f'\n- Gentoo repo specific')
+ out(f'\n\n- Gentoo repo specific')
known_results = ', '.join(
f'`{r.__name__}`_' for r in
sorted(check.known_results, key=attrgetter('__name__')))
diff --git a/doc/generate/pkgcheck/keywords.py b/doc/generate/pkgcheck/keywords.py
index b05ba8e2..706c58a5 100755
--- a/doc/generate/pkgcheck/keywords.py
+++ b/doc/generate/pkgcheck/keywords.py
@@ -59,7 +59,7 @@ def main(f=sys.stdout, **kwargs):
explanation = '\n'.join(dedent(explanation).strip().split('\n'))
out('\n' + explanation)
if all(issubclass(x, GentooRepoCheck) for x in related_checks[keyword]):
- out(f'- Gentoo repo specific')
+ out(f'\n- Gentoo repo specific')
out('\n' + f'- level: {keyword.level}')
checks = ', '.join(sorted(
f'`{c.__name__}`_' for c in related_checks[keyword]))