aboutsummaryrefslogtreecommitdiffstats
path: root/test/mitmproxy/test_console_help.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-02-16 20:49:10 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-02-16 20:56:33 +0100
commitd95a1f9819ded642174fad789a8fb0c595ca0840 (patch)
treeb0df4816332f76a5f37f8b9783d90939c41ef65b /test/mitmproxy/test_console_help.py
parentf1a0a3b228181457d10f4ffbe6609769d22fabba (diff)
downloadmitmproxy-d95a1f9819ded642174fad789a8fb0c595ca0840.tar.gz
mitmproxy-d95a1f9819ded642174fad789a8fb0c595ca0840.tar.bz2
mitmproxy-d95a1f9819ded642174fad789a8fb0c595ca0840.zip
fix all libmproxy->mitmproxy references
Diffstat (limited to 'test/mitmproxy/test_console_help.py')
-rw-r--r--test/mitmproxy/test_console_help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mitmproxy/test_console_help.py b/test/mitmproxy/test_console_help.py
index f1a71faf..0589bd68 100644
--- a/test/mitmproxy/test_console_help.py
+++ b/test/mitmproxy/test_console_help.py
@@ -3,7 +3,7 @@ from unittest.case import SkipTest
if os.name == "nt":
raise SkipTest("Skipped on Windows.")
-import libmproxy.console.help as help
+import mitmproxy.console.help as help
class TestHelp: