esp8266/scripts/webrepl_setup: Show password placeholder char.

That was the intent for the initial user setup, but didn't work before
due to lwIP issues. Enable now that they're fixed.
This commit is contained in:
Paul Sokolovsky 2016-05-17 00:01:41 +03:00
parent 7327d5f6f7
commit 21ec1fd850
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ def getpass(stream, prompt):
stream.write("\r\n")
return passwd
passwd += c
# stream.write("*")
stream.write("*")
def handle_conn(listen_sock):
cl, remote_addr = listen_sock.accept()