diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-07-30 11:58:29 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-07-30 12:02:42 +1200 |
commit | 5b08703fa8338407af063652658e7f570a2ec0f8 (patch) | |
tree | 3d619b149176c697b2ccf08cf9b3e952542c78c7 /libpathod/test.py | |
parent | b1ac4245c81c07fb6b0e014a3cc8046f637d8aff (diff) | |
download | mitmproxy-5b08703fa8338407af063652658e7f570a2ec0f8.tar.gz mitmproxy-5b08703fa8338407af063652658e7f570a2ec0f8.tar.bz2 mitmproxy-5b08703fa8338407af063652658e7f570a2ec0f8.zip |
Handle disconnects on flush.
Diffstat (limited to 'libpathod/test.py')
-rw-r--r-- | libpathod/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpathod/test.py b/libpathod/test.py index 5bcebcb6..d5089d2c 100644 --- a/libpathod/test.py +++ b/libpathod/test.py @@ -44,7 +44,7 @@ class Daemon: class PaThread(threading.Thread): def __init__(self, q, ssl, daemonargs): threading.Thread.__init__(self) - self.q, self.ssl = q, ssl + self.q, self.ssl = q, ssl self.daemonargs = daemonargs def run(self): |