From: Steven Tobin Date: Tue, 17 Jul 2012 11:15:25 +0000 (+0100) Subject: fixed typo in usage instructions X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=af2b8bd8c058e5d787fc43e1741a7944d6c3b5df;p=redacted-XKCD-password-generator.git fixed typo in usage instructions --- diff --git a/README.mkd b/README.mkd index 506cffb..f123d73 100644 --- a/README.mkd +++ b/README.mkd @@ -20,7 +20,7 @@ xkcd-password.py [options] * `-i, --interactive` Interactively select a password -* `-v VALID_CHARS, --valid_chars=VALID_CHARS` Valid chars, using regexp style (e.g. '[a-z]' +* `-v VALID_CHARS, --valid_chars=VALID_CHARS` Valid chars, using regexp style (e.g. '[a-z]') * `-V, --verbose` Report various metrics for given options diff --git a/xkcd-password.py b/xkcd-password.py index 5651c28..4a49b3a 100755 --- a/xkcd-password.py +++ b/xkcd-password.py @@ -202,7 +202,7 @@ if __name__ == '__main__': help="Interactively select a password") parser.add_option("-v", "--valid_chars", dest="valid_chars", default='.', - help="Valid chars, using regexp style (e.g. '[a-z]'") + help="Valid chars, using regexp style (e.g. '[a-z]')") parser.add_option("-V", "--verbose", dest="verbose", default=False, action="store_true", help="Report various metrics for given options")