esp8266/scripts/webrepl: Add "ws://" to "daemon started at" message.

To remind people it's not HTTP.
pull/2012/merge
Paul Sokolovsky 2016-04-26 12:47:24 +03:00
rodzic 51cee4495e
commit 90b2cfe644
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -22,7 +22,7 @@ def setup_conn(port):
for i in (network.AP_IF, network.STA_IF):
iface = network.WLAN(i)
if iface.active():
print("WebREPL daemon started on %s:%d" % (iface.ifconfig()[0], port))
print("WebREPL daemon started on ws://%s:%d" % (iface.ifconfig()[0], port))
def accept_conn(listen_sock):