mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-11 17:00:49 +00:00
Fix characters typo in captcha python scripts
Change-Id: I855a43d3bd331974c63b4eacf8178805db6de7c1
This commit is contained in:
parent
4cd8e7664f
commit
b86cc888a5
|
@ -209,7 +209,7 @@ if __name__ == '__main__':
|
|||
script_dir = os.path.dirname(os.path.realpath(__file__))
|
||||
parser = OptionParser()
|
||||
parser.add_option("--wordlist", help="A list of words (required)", metavar="WORDS.txt")
|
||||
parser.add_option("--random", help="Use random charcters instead of a wordlist", action="store_true")
|
||||
parser.add_option("--random", help="Use random characters instead of a wordlist", action="store_true")
|
||||
parser.add_option("--key", help="The passphrase set as $wgCaptchaSecret (required)", metavar="KEY")
|
||||
parser.add_option("--output", help="The directory to put the images in - $wgCaptchaDirectory (required)", metavar="DIR")
|
||||
parser.add_option("--font", help="The font to use (required)", metavar="FONT.ttf")
|
||||
|
|
|
@ -226,7 +226,7 @@ if __name__ == '__main__':
|
|||
script_dir = os.path.dirname(os.path.realpath(__file__))
|
||||
parser = OptionParser()
|
||||
parser.add_option("--wordlist", help="A list of words (required)", metavar="WORDS.txt")
|
||||
parser.add_option("--random", help="Use random charcters instead of a wordlist", action="store_true")
|
||||
parser.add_option("--random", help="Use random characters instead of a wordlist", action="store_true")
|
||||
parser.add_option("--key", help="The passphrase set as $wgCaptchaSecret (required)", metavar="KEY")
|
||||
parser.add_option("--output", help="The directory to put the images in - $wgCaptchaDirectory (required)", metavar="DIR")
|
||||
parser.add_option("--font", help="The font to use (required)", metavar="FONT.ttf")
|
||||
|
|
Loading…
Reference in a new issue