Skip to content

Commit 90b2cfe

Browse files
committed
esp8266/scripts/webrepl: Add "ws://" to "daemon started at" message.
To remind people it's not HTTP.
1 parent 51cee44 commit 90b2cfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

esp8266/scripts/webrepl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def setup_conn(port):
2222
for i in (network.AP_IF, network.STA_IF):
2323
iface = network.WLAN(i)
2424
if iface.active():
25-
print("WebREPL daemon started on %s:%d" % (iface.ifconfig()[0], port))
25+
print("WebREPL daemon started on ws://%s:%d" % (iface.ifconfig()[0], port))
2626

2727

2828
def accept_conn(listen_sock):

0 commit comments

Comments
 (0)