summaryrefslogtreecommitdiffstatshomepage
path: root/examples/network/http_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/http_client.py')
-rw-r--r--examples/network/http_client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/network/http_client.py b/examples/network/http_client.py
index df66ace2a5..b245a721ac 100644
--- a/examples/network/http_client.py
+++ b/examples/network/http_client.py
@@ -18,10 +18,10 @@ def main(use_stream=False):
# MicroPython socket objects support stream (aka file) interface
# directly, but the line below is needed for CPython.
s = s.makefile("rwb", 0)
- s.write(b"GET / HTTP/1.0\n\n")
+ s.write(b"GET / HTTP/1.0\r\n\r\n")
print(s.readall())
else:
- s.send(b"GET / HTTP/1.0\n\n")
+ s.send(b"GET / HTTP/1.0\r\n\r\n")
print(s.recv(4096))
s.close()