From df1c24c42a9a00434f9de96a8e505500fe08ed94 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Mon, 2 Sep 2024 14:47:29 +0200 Subject: [PATCH] typo --- client/pyscripts/fm11rf08s_recovery.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/pyscripts/fm11rf08s_recovery.py b/client/pyscripts/fm11rf08s_recovery.py index 1ea38f7e7..493fd058f 100755 --- a/client/pyscripts/fm11rf08s_recovery.py +++ b/client/pyscripts/fm11rf08s_recovery.py @@ -60,8 +60,8 @@ for tool, bin in tools.items(): parser = argparse.ArgumentParser(description='A script combining staticnested* tools ' 'to recover all keys from a FM11RF08S card.') -parser.add_argument('-x', '--init-check', action='store_true', help='Do not run an initial fchk for default keys') -parser.add_argument('-y', '--final-check', action='store_true', help='Do not run a final fchk with the found keys') +parser.add_argument('-x', '--init-check', action='store_true', help='Run an initial fchk for default keys') +parser.add_argument('-y', '--final-check', action='store_true', help='Run a final fchk with the found keys') parser.add_argument('-d', '--debug', action='store_true', help='Enable debug mode') args = parser.parse_args()