aboutsummaryrefslogtreecommitdiffstats
path: root/test/tutils.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2011-08-02 16:14:33 +1200
committerAldo Cortesi <aldo@nullcube.com>2011-08-02 16:14:33 +1200
commit357502fe03a5f86c1c29d35c5d607541df157640 (patch)
tree76921abb49a94131e63e0e0d8a9e623a45642bc1 /test/tutils.py
parent17835b9b78ae08f84a97e1128c23d85eab74c339 (diff)
downloadmitmproxy-357502fe03a5f86c1c29d35c5d607541df157640.tar.gz
mitmproxy-357502fe03a5f86c1c29d35c5d607541df157640.tar.bz2
mitmproxy-357502fe03a5f86c1c29d35c5d607541df157640.zip
General cleanup.
Cut out unused variables and code, generally shut up pychecker as much as is reasonable.
Diffstat (limited to 'test/tutils.py')
-rw-r--r--test/tutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tutils.py b/test/tutils.py
index 2327bdb9..19887fa9 100644
--- a/test/tutils.py
+++ b/test/tutils.py
@@ -66,7 +66,7 @@ class TestMaster(controller.Master):
class ProxyThread(threading.Thread):
def __init__(self, port, testq):
self.tmaster = TestMaster(port, testq)
- controller.exit = False
+ controller.should_exit = False
threading.Thread.__init__(self)
def run(self):