Skip to content
Snippets Groups Projects
Commit 90b2cfe6 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

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

To remind people it's not HTTP.
parent 51cee449
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment