aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/generate/pkgcheck/checks.py')
-rwxr-xr-xdoc/generate/pkgcheck/checks.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/generate/pkgcheck/checks.py b/doc/generate/pkgcheck/checks.py
index 5d62ee2d..da671b2a 100755
--- a/doc/generate/pkgcheck/checks.py
+++ b/doc/generate/pkgcheck/checks.py
@@ -21,6 +21,7 @@ from textwrap import dedent, TextWrapper
from snakeoil.strings import pluralism as _pl
from pkgcheck import base, const
+from pkgcheck.checks import GentooRepoCheck
def main(f=sys.stdout, **kwargs):
@@ -59,6 +60,8 @@ def main(f=sys.stdout, **kwargs):
if explanation:
explanation = '\n'.join(dedent(explanation).strip().split('\n'))
out('\n' + explanation)
+ if issubclass(check, GentooRepoCheck):
+ out(f'\n- Gentoo repo specific')
known_results = ', '.join(
f'`{r.__name__}`_' for r in
sorted(check.known_results, key=attrgetter('__name__')))