aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/protocols/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'pathod/protocols/http.py')
-rw-r--r--pathod/protocols/http.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pathod/protocols/http.py b/pathod/protocols/http.py
index 7736df4b..9756c266 100644
--- a/pathod/protocols/http.py
+++ b/pathod/protocols/http.py
@@ -17,9 +17,9 @@ class HTTPProtocol(object):
"""
self.pathod_handler.wfile.write(
- 'HTTP/1.1 200 Connection established\r\n' +
- ('Proxy-agent: %s\r\n' % version.PATHOD) +
- '\r\n'
+ b'HTTP/1.1 200 Connection established\r\n' +
+ (b'Proxy-agent: %s\r\n' % version.PATHOD.encode()) +
+ b'\r\n'
)
self.pathod_handler.wfile.flush()
if not self.pathod_handler.server.ssloptions.not_after_connect: