diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-10-20 10:11:58 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-10-20 10:11:58 +1300 |
commit | f45f4e677e8cddba8160d1e4e02ca8a4515e3456 (patch) | |
tree | a48ce5978fa24b2e92d770b1263fd3952055d9d7 /examples/custom_contentviews.py | |
parent | 1407830280383e50a8af848a0c564c4912df5a52 (diff) | |
download | mitmproxy-f45f4e677e8cddba8160d1e4e02ca8a4515e3456.tar.gz mitmproxy-f45f4e677e8cddba8160d1e4e02ca8a4515e3456.tar.bz2 mitmproxy-f45f4e677e8cddba8160d1e4e02ca8a4515e3456.zip |
netlib.strutils -> mitmproxy.utils.strutils
Diffstat (limited to 'examples/custom_contentviews.py')
-rw-r--r-- | examples/custom_contentviews.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/custom_contentviews.py b/examples/custom_contentviews.py index 5a63e2a0..3558eaca 100644 --- a/examples/custom_contentviews.py +++ b/examples/custom_contentviews.py @@ -2,7 +2,7 @@ import string import lxml.html import lxml.etree from mitmproxy import contentviews -from netlib import strutils +from mitmproxy.utils import strutils class ViewPigLatin(contentviews.View): |