aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/pathod.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-05-26 12:09:39 -0700
committerMaximilian Hils <git@maximilianhils.com>2016-05-26 12:09:39 -0700
commit22ecd022a84e1c3762dd425bc9bee2230e393d8d (patch)
tree47f7cac0e86c715bc32e955072fbe59f06d589cf /pathod/pathod.py
parentd149c447fe9d3ec359271270ed1c32c2c7da6aad (diff)
parent92317bc81d72f243095a1bfa192f568637d9bc32 (diff)
downloadmitmproxy-22ecd022a84e1c3762dd425bc9bee2230e393d8d.tar.gz
mitmproxy-22ecd022a84e1c3762dd425bc9bee2230e393d8d.tar.bz2
mitmproxy-22ecd022a84e1c3762dd425bc9bee2230e393d8d.zip
Merge pull request #1119 from dufferzafar/pathod-port
Python 3 - pathod.utils
Diffstat (limited to 'pathod/pathod.py')
-rw-r--r--pathod/pathod.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/pathod/pathod.py b/pathod/pathod.py
index 017ce072..af5f9e6a 100644
--- a/pathod/pathod.py
+++ b/pathod/pathod.py
@@ -6,15 +6,11 @@ import sys
import threading
import urllib
-from netlib import tcp, http, certutils, websockets
+from netlib import tcp, certutils, websockets
from netlib.exceptions import HttpException, HttpReadDisconnect, TcpTimeout, TcpDisconnect, \
TlsException
from . import version, app, language, utils, log, protocols
-import language.http
-import language.actions
-import language.exceptions
-import language.websockets
DEFAULT_CERT_DOMAIN = "pathod.net"