summaryrefslogtreecommitdiffstatshomepage
path: root/examples/network/http_server_simplistic.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/http_server_simplistic.py')
-rw-r--r--examples/network/http_server_simplistic.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/network/http_server_simplistic.py b/examples/network/http_server_simplistic.py
index 71949419e6..a9831127ff 100644
--- a/examples/network/http_server_simplistic.py
+++ b/examples/network/http_server_simplistic.py
@@ -28,7 +28,6 @@ def main():
while True:
res = s.accept()
client_s = res[0]
- client_addr = res[1]
req = client_s.recv(4096)
print("Request:")
print(req)