From f6cde51055f1b89cd2a28313e13df404c8489266 Mon Sep 17 00:00:00 2001 From: FrankAbagnaleJr Date: Fri, 18 Dec 2020 11:07:16 -0600 Subject: [PATCH] Update extract_otp_secret_keys.py Minor formatting changes and clarifications to help text --- extract_otp_secret_keys.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extract_otp_secret_keys.py b/extract_otp_secret_keys.py index 3a5a15f..7f918aa 100644 --- a/extract_otp_secret_keys.py +++ b/extract_otp_secret_keys.py @@ -53,8 +53,8 @@ import generated_python.google_auth_pb2 arg_parser = argparse.ArgumentParser() arg_parser.add_argument('--verbose', '-v', help='verbose output', action='store_true') arg_parser.add_argument('--qr', '-q', help='generate QR codes (otpauth://...)', action='store_true') -arg_parser.add_argument('--saveqr', '-s', help='save QR code(s) as images to the "qr" folder', action='store_true') -arg_parser.add_argument('--printqr', '-p', help='print the QR code(s) as text to the terminal', action='store_true') +arg_parser.add_argument('--saveqr', '-s', help='save QR code(s) as images to the "qr" subfolder', action='store_true') +arg_parser.add_argument('--printqr', '-p', help='print QR code(s) as text to the terminal', action='store_true') arg_parser.add_argument('infile', help='file or - for stdin (default: -) with "otpauth-migration://..." URLs separated by newlines, lines starting with # are ignored') args = arg_parser.parse_args()