From 69e0c6c45f6084098318c82089ce3988ad2501be Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sat, 14 Jul 2018 02:10:23 +0300 Subject: [PATCH] ArgumentParser: Improve description --- kconfig-hardened-check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kconfig-hardened-check.py b/kconfig-hardened-check.py index 9b1c066..d21788a 100755 --- a/kconfig-hardened-check.py +++ b/kconfig-hardened-check.py @@ -215,7 +215,7 @@ def check_config_file(fname): if __name__ == '__main__': - parser = ArgumentParser(description='Kconfig hardened check') + parser = ArgumentParser(description='Checks the hardening options in the Linux kernel config') parser.add_argument('-p', '--print', default=False, action='store_true', help='print hardening preferences') parser.add_argument('-c', '--config', help='check the config_file against these preferences') parser.add_argument('--debug', default=False, action='store_true', help='enable internal debug mode') -- 2.31.1