aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/test.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-03-20 19:40:03 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-03-20 19:40:03 +0100
commit88d365cfe671bc5c8d96e78334337aa84cc815da (patch)
tree21a9bfd946cc5b8958d1b3549a277b51a456ba19 /pathod/test.py
parent61a657fe56949732d6470862c2ebbe09141f85f2 (diff)
downloadmitmproxy-88d365cfe671bc5c8d96e78334337aa84cc815da.tar.gz
mitmproxy-88d365cfe671bc5c8d96e78334337aa84cc815da.tar.bz2
mitmproxy-88d365cfe671bc5c8d96e78334337aa84cc815da.zip
py3++: cStringIO
Diffstat (limited to 'pathod/test.py')
-rw-r--r--pathod/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pathod/test.py b/pathod/test.py
index 33a6b763..a2552376 100644
--- a/pathod/test.py
+++ b/pathod/test.py
@@ -1,4 +1,4 @@
-import cStringIO
+from six.moves import cStringIO as StringIO
import threading
import Queue
@@ -14,7 +14,7 @@ class Daemon:
def __init__(self, ssl=None, **daemonargs):
self.q = Queue.Queue()
- self.logfp = cStringIO.StringIO()
+ self.logfp = StringIO()
daemonargs["logfp"] = self.logfp
self.thread = _PaThread(self.IFACE, self.q, ssl, daemonargs)
self.thread.start()