diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2014-01-09 18:04:04 +0100 | 
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2014-01-09 18:04:04 +0100 | 
| commit | d31b7daf6c284f13b733bc9f8076ab836f8f464e (patch) | |
| tree | 4d76acc563006da10f9f926c2542f1bcff556ff4 | |
| parent | e0d376381efa3394e23ed60283dc45b7893e8e1e (diff) | |
| download | mitmproxy-d31b7daf6c284f13b733bc9f8076ab836f8f464e.tar.gz mitmproxy-d31b7daf6c284f13b733bc9f8076ab836f8f464e.tar.bz2 mitmproxy-d31b7daf6c284f13b733bc9f8076ab836f8f464e.zip | |
change method signature
| -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 5fc1fd55..5b8627a3 100644 --- a/libpathod/pathod.py +++ b/libpathod/pathod.py @@ -282,7 +282,7 @@ class Pathod(tcp.TCPServer):              staticdir = self.staticdir          ) -    def handle_connection(self, request, client_address): +    def handle_client_connection(self, request, client_address):          h = PathodHandler(request, client_address, self)          try:              h.handle() | 
