From 3cf6bd5fb61d0b84033f4c86b3fc4a99d5287ac1 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 19 Jul 2015 22:30:06 +0200 Subject: [PATCH] remove debug prints --- libpathod/pathod.py | 1 - test/test_pathod.py | 1 - 2 files changed, 2 deletions(-) diff --git a/libpathod/pathod.py b/libpathod/pathod.py index 63dd1a153..e634d7c21 100644 --- a/libpathod/pathod.py +++ b/libpathod/pathod.py @@ -133,7 +133,6 @@ class PathodHandler(tcp.BaseHandler): return None, None if isinstance(req, http.ConnectRequest): - print([req.host, req.port, req.path]) return self.protocol.handle_http_connect([req.host, req.port, req.path], lg) method = req.method diff --git a/test/test_pathod.py b/test/test_pathod.py index 4adc9c22f..1f127586b 100644 --- a/test/test_pathod.py +++ b/test/test_pathod.py @@ -284,5 +284,4 @@ class TestHTTP2(tutils.DaemonTests): def test_http2(self): r, _ = self.pathoc(["GET:/"], ssl=True, use_http2=True) - print(r) assert r[0].status_code == "800"