esp8266/modules/webrepl_setup: Add info about allowed password length.
This patch also makes the code more concise by combining the checks for the password length.
This commit is contained in:
parent
b1457db002
commit
1b7d6a7951
|
@ -17,12 +17,9 @@ def getpass(prompt):
|
||||||
|
|
||||||
def input_pass():
|
def input_pass():
|
||||||
while 1:
|
while 1:
|
||||||
passwd1 = getpass("New password: ")
|
passwd1 = getpass("New password (4-9 chars): ")
|
||||||
if len(passwd1) < 4:
|
if len(passwd1) < 4 or len(passwd1) > 9:
|
||||||
print("Password too short")
|
print("Invalid password length")
|
||||||
continue
|
|
||||||
elif len(passwd1) > 9:
|
|
||||||
print("Password too long")
|
|
||||||
continue
|
continue
|
||||||
passwd2 = getpass("Confirm password: ")
|
passwd2 = getpass("Confirm password: ")
|
||||||
if passwd1 == passwd2:
|
if passwd1 == passwd2:
|
||||||
|
|
Loading…
Reference in New Issue