diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-07-22 12:40:27 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-07-22 12:40:27 +1200 |
commit | 1e93e42883ba43642b4e2bfb231ee74a323706c7 (patch) | |
tree | 046ededc379dcbfc386156883b1dc668d5247ae6 /libpathod/pathod.py | |
parent | 8d8ede7e265591e94f6e2db5bf79f6b85e822912 (diff) | |
download | mitmproxy-1e93e42883ba43642b4e2bfb231ee74a323706c7.tar.gz mitmproxy-1e93e42883ba43642b4e2bfb231ee74a323706c7.tar.bz2 mitmproxy-1e93e42883ba43642b4e2bfb231ee74a323706c7.zip |
Escape special characters in first line error log.
Diffstat (limited to 'libpathod/pathod.py')
-rw-r--r-- | libpathod/pathod.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpathod/pathod.py b/libpathod/pathod.py index e4a14193..9d155301 100644 --- a/libpathod/pathod.py +++ b/libpathod/pathod.py @@ -30,7 +30,7 @@ class PathodHandler(tcp.BaseHandler): parts = http.parse_init_http(line) if not parts: - s = "Invalid first line: %s"%line.rstrip() + s = "Invalid first line: %s"%repr(line) self.info(s) self.server.add_log( dict( |