diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-06-02 12:31:41 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-06-02 12:31:41 +1200 |
commit | cccdc9842648518de7ee48ce461801954fc334c8 (patch) | |
tree | 288941673dc0db7ffe96be55ae2c34a1ce5db916 /netlib/websockets | |
parent | eaa3b308f7bb48256ccf56ea07d008fa5f9dd6ad (diff) | |
download | mitmproxy-cccdc9842648518de7ee48ce461801954fc334c8.tar.gz mitmproxy-cccdc9842648518de7ee48ce461801954fc334c8.tar.bz2 mitmproxy-cccdc9842648518de7ee48ce461801954fc334c8.zip |
Utils reorganisation: add netlib.strutils
Extract a number of string and format-related functions to netlib.strutils.
Diffstat (limited to 'netlib/websockets')
-rw-r--r-- | netlib/websockets/frame.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/netlib/websockets/frame.py b/netlib/websockets/frame.py index deb0ce33..42196ffb 100644 --- a/netlib/websockets/frame.py +++ b/netlib/websockets/frame.py @@ -7,6 +7,7 @@ import warnings import six from netlib import tcp +from netlib import strutils from netlib import utils from netlib import human from netlib.websockets import protocol @@ -254,7 +255,7 @@ class Frame(object): def __repr__(self): ret = repr(self.header) if self.payload: - ret = ret + "\nPayload:\n" + utils.clean_bin(self.payload).decode("ascii") + ret = ret + "\nPayload:\n" + strutils.clean_bin(self.payload).decode("ascii") return ret def human_readable(self): |