Browse Source

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.
pull/2077/merge
Paul Sokolovsky 9 years ago
parent
commit
21ec1fd850
  1. 2
      esp8266/scripts/webrepl_setup.py

2
esp8266/scripts/webrepl_setup.py

@ -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()

Loading…
Cancel
Save