aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/server.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2012-04-08 00:29:34 +0000
committerJason R. Coombs <jaraco@jaraco.com>2012-04-08 00:29:34 +0000
commit1b9b6071393b5b40921c0f6bbf95fcceed8029d4 (patch)
tree907f1d20acaa891739de2426895280c66c43da21 /setuptools/tests/server.py
parent94f0f93eb75b4ad956a1a1d602cfcc2405268b9d (diff)
downloadexternal_python_setuptools-1b9b6071393b5b40921c0f6bbf95fcceed8029d4.tar.gz
external_python_setuptools-1b9b6071393b5b40921c0f6bbf95fcceed8029d4.tar.bz2
external_python_setuptools-1b9b6071393b5b40921c0f6bbf95fcceed8029d4.zip
Fixed two issues for Python 2.4 compatibility. Tests now run again on Python 2.40.6.26
--HG-- branch : distribute extra : rebase_source : c6dc5ce8070ec42190d4d8eb6af28523d447f962
Diffstat (limited to 'setuptools/tests/server.py')
-rw-r--r--setuptools/tests/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/server.py b/setuptools/tests/server.py
index 6b9fe6ac..7b5cacb9 100644
--- a/setuptools/tests/server.py
+++ b/setuptools/tests/server.py
@@ -67,7 +67,7 @@ class MockServer(HTTPServer, threading.Thread):
RequestHandlerClass=RequestRecorder):
HTTPServer.__init__(self, server_address, RequestHandlerClass)
threading.Thread.__init__(self)
- self.daemon = True
+ self.setDaemon(True)
self.requests = []
def run(self):