aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/websockets/protocol.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2015-07-14 23:02:14 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2015-07-22 15:30:51 +0200
commitf50deb7b763d093a22a4d331e16465a2fb0329cf (patch)
treea11e92fca2a0deffeb801cc6f931bd79aec0d669 /netlib/websockets/protocol.py
parentbd5ee212840e3be731ea93e14ef1375745383d88 (diff)
downloadmitmproxy-f50deb7b763d093a22a4d331e16465a2fb0329cf.tar.gz
mitmproxy-f50deb7b763d093a22a4d331e16465a2fb0329cf.tar.bz2
mitmproxy-f50deb7b763d093a22a4d331e16465a2fb0329cf.zip
move bits around
Diffstat (limited to 'netlib/websockets/protocol.py')
-rw-r--r--netlib/websockets/protocol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/websockets/protocol.py b/netlib/websockets/protocol.py
index dcab53fb..29b4db3d 100644
--- a/netlib/websockets/protocol.py
+++ b/netlib/websockets/protocol.py
@@ -5,7 +5,7 @@ import os
import struct
import io
-from .. import utils, odict, tcp
+from netlib import utils, odict, tcp
# Colleciton of utility functions that implement small portions of the RFC6455
# WebSockets Protocol Useful for building WebSocket clients and servers.