diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-02-16 20:59:33 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-02-16 21:11:19 +0100 |
commit | 1785f70a19504efaa4edf6cfaf8ee2d74060a357 (patch) | |
tree | af4f4eeb7f6841dfb1980715a2a2e96b11d0406a /pathod/examples | |
parent | d95a1f9819ded642174fad789a8fb0c595ca0840 (diff) | |
download | mitmproxy-1785f70a19504efaa4edf6cfaf8ee2d74060a357.tar.gz mitmproxy-1785f70a19504efaa4edf6cfaf8ee2d74060a357.tar.bz2 mitmproxy-1785f70a19504efaa4edf6cfaf8ee2d74060a357.zip |
fix all libpathod->pathod references
Diffstat (limited to 'pathod/examples')
-rw-r--r-- | pathod/examples/libpathod_pathoc.py | 2 | ||||
-rw-r--r-- | pathod/examples/test_context.py | 2 | ||||
-rw-r--r-- | pathod/examples/test_setup.py | 2 | ||||
-rw-r--r-- | pathod/examples/test_setupall.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/pathod/examples/libpathod_pathoc.py b/pathod/examples/libpathod_pathoc.py index cf94151b..587c0e4c 100644 --- a/pathod/examples/libpathod_pathoc.py +++ b/pathod/examples/libpathod_pathoc.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -from libpathod import pathoc +from pathod import pathoc p = pathoc.Pathoc(("google.com", 80)) p.connect() diff --git a/pathod/examples/test_context.py b/pathod/examples/test_context.py index 7c0386c1..8db4331f 100644 --- a/pathod/examples/test_context.py +++ b/pathod/examples/test_context.py @@ -1,5 +1,5 @@ import requests -from libpathod import test +from pathod import test def test_simple(): diff --git a/pathod/examples/test_setup.py b/pathod/examples/test_setup.py index 6085c98a..5dbc456d 100644 --- a/pathod/examples/test_setup.py +++ b/pathod/examples/test_setup.py @@ -1,5 +1,5 @@ import requests -from libpathod import test +from pathod import test class Test: diff --git a/pathod/examples/test_setupall.py b/pathod/examples/test_setupall.py index f0ba5844..cb84b7b2 100644 --- a/pathod/examples/test_setupall.py +++ b/pathod/examples/test_setupall.py @@ -1,5 +1,5 @@ import requests -from libpathod import test +from pathod import test class Test: |