aboutsummaryrefslogtreecommitdiffstats
path: root/test/handler.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/handler.py')
-rw-r--r--test/handler.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/handler.py b/test/handler.py
index 5803b4d1..8b717733 100644
--- a/test/handler.py
+++ b/test/handler.py
@@ -10,6 +10,7 @@ class TestRequestHandler(BaseHTTPRequestHandler):
self.wfile = socket._fileobject(self.request, "wb", self.wbufsize)
def log_message(self, *args, **kwargs):
+ # Silence output
pass
def do_GET(self):
@@ -21,5 +22,3 @@ class TestRequestHandler(BaseHTTPRequestHandler):
self.end_headers()
self.wfile.write(data)
-
-