diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2013-02-23 16:34:59 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2013-02-23 16:34:59 +1300 |
commit | 269780c57780d155c4d8bd95fcc2af2104effa5b (patch) | |
tree | 48df9108a2378cd87dfe2893adcafc88afe52ca5 /libmproxy | |
parent | f203881b0d7f81a7f8ecbc44b7030060242af01b (diff) | |
download | mitmproxy-269780c57780d155c4d8bd95fcc2af2104effa5b.tar.gz mitmproxy-269780c57780d155c4d8bd95fcc2af2104effa5b.tar.bz2 mitmproxy-269780c57780d155c4d8bd95fcc2af2104effa5b.zip |
Unit test dummy response functions.
Diffstat (limited to 'libmproxy')
-rw-r--r-- | libmproxy/proxy.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmproxy/proxy.py b/libmproxy/proxy.py index 6d476c7b..c8fac5f4 100644 --- a/libmproxy/proxy.py +++ b/libmproxy/proxy.py @@ -194,7 +194,8 @@ class ProxyHandler(tcp.BaseHandler): sc.rfile.first_byte_timestamp, utils.timestamp() ) response_reply = self.channel.ask(response) - # Not replying to the server invalidates the server connection, so we terminate. + # Not replying to the server invalidates the server + # connection, so we terminate. if response_reply == KILL: sc.terminate() |