aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2011-01-20 18:31:14 +0100
committerSebastian Pipping <sebastian@pipping.org>2011-01-20 18:31:17 +0100
commitf184b664b2d7f77afe64f7393a9bacead8e11bbd (patch)
tree8d917c907d77eb39e5b841a1f8de186e7fdaa7e6
parentdocmatcher: Handle MDADM_* variables (diff)
downloadgenkernel-f184b664b2d7f77afe64f7393a9bacead8e11bbd.tar.gz
genkernel-f184b664b2d7f77afe64f7393a9bacead8e11bbd.tar.bz2
genkernel-f184b664b2d7f77afe64f7393a9bacead8e11bbd.zip
docmatcher: Re-order output sections for practical reasons
- Lists expected empty to the end - Before that order by importance (ascending)
-rw-r--r--maintenance/docmatcher.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/maintenance/docmatcher.py b/maintenance/docmatcher.py
index 3bc8b4f8..c128a5e7 100644
--- a/maintenance/docmatcher.py
+++ b/maintenance/docmatcher.py
@@ -252,21 +252,21 @@ def main():
# Future work (due extensions)
- print('Options missing from the *man page*:')
- print_set(gen_cmdline_sh_parsing_long_params.difference(genkernel_8_txt_long_params))
-
- print('Options missing from *--help*:')
- print_set(gen_cmdline_sh_parsing_long_params.difference(gen_cmdline_sh_usage_long_params))
+ print('Variables missing from *web page*:')
+ print_set(known_variales.difference(genkernel_xml_variables))
print('Options missing from *web page*:')
print_set(gen_cmdline_sh_parsing_long_params.difference(genkernel_xml_long_params))
- print('Variables missing from *web page*:')
- print_set(known_variales.difference(genkernel_xml_variables))
-
print('Variables missing from *genkernel.conf*:')
print_set(known_variales.difference(genkernel_conf_variables))
+ print('Options missing from the *man page*:')
+ print_set(gen_cmdline_sh_parsing_long_params.difference(genkernel_8_txt_long_params))
+
+ print('Options missing from *--help*:')
+ print_set(gen_cmdline_sh_parsing_long_params.difference(gen_cmdline_sh_usage_long_params))
+
# Future work (due removal and updates)
print('Removed options still mentioned in the *man page*:')