diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-05-15 18:16:42 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-05-15 18:16:42 +0200 |
commit | 00fd243810954b1ea7c108482513a7e92f2e8000 (patch) | |
tree | 31b8dc1465613fae3096281881d1d6e9910e48bb /libmproxy/protocol/handle.py | |
parent | a17a53269d23d0bde74c340c9df4b1983b70144b (diff) | |
download | mitmproxy-00fd243810954b1ea7c108482513a7e92f2e8000.tar.gz mitmproxy-00fd243810954b1ea7c108482513a7e92f2e8000.tar.bz2 mitmproxy-00fd243810954b1ea7c108482513a7e92f2e8000.zip |
fix up error messages
Diffstat (limited to 'libmproxy/protocol/handle.py')
-rw-r--r-- | libmproxy/protocol/handle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/protocol/handle.py b/libmproxy/protocol/handle.py index c94cc36e..42917ba1 100644 --- a/libmproxy/protocol/handle.py +++ b/libmproxy/protocol/handle.py @@ -4,7 +4,7 @@ from . import http, tcp protocols = { 'http': dict(handler=http.HTTPHandler, flow=http.HTTPFlow), 'tcp': dict(handler=tcp.TCPHandler) -} # PyCharm type hinting behaves bad if this is a dict constructor... +} def _handler(conntype, connection_handler): |