esp8266/scripts/webrepl: Add "ws://" to "daemon started at" message.
To remind people it's not HTTP.
This commit is contained in:
parent
51cee4495e
commit
90b2cfe644
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user