diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-05-16 11:31:53 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-05-16 11:31:53 +1200 |
commit | 2ee60783b694b6a8555a6afbef21dc1f2ca1f8b9 (patch) | |
tree | db69f9cff1ff0611b507f55c133994076166af6e /libpathod/language/http.py | |
parent | d66dedc6e7bdc201cd4d3fa5f04c9636a8ad57f4 (diff) | |
download | mitmproxy-2ee60783b694b6a8555a6afbef21dc1f2ca1f8b9.tar.gz mitmproxy-2ee60783b694b6a8555a6afbef21dc1f2ca1f8b9.tar.bz2 mitmproxy-2ee60783b694b6a8555a6afbef21dc1f2ca1f8b9.zip |
websockets: client and server flavors, key and mask specification
Diffstat (limited to 'libpathod/language/http.py')
-rw-r--r-- | libpathod/language/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpathod/language/http.py b/libpathod/language/http.py index 94de7237..070cc5f4 100644 --- a/libpathod/language/http.py +++ b/libpathod/language/http.py @@ -5,7 +5,7 @@ import pyparsing as pp import netlib.websockets from netlib import http_status, http_uastrings -from . import base, generators, exceptions, actions, message +from . import base, exceptions, actions, message class WS(base.CaselessLiteral): |