[pypy-svn] r58169 - pypy/build/bot

pedronis at codespeak.net pedronis at codespeak.net
Mon Sep 15 18:27:59 CEST 2008


Author: pedronis
Date: Mon Sep 15 18:27:57 2008
New Revision: 58169

Modified:
   pypy/build/bot/master.cfg
Log:
this was reconfig friendlier for us



Modified: pypy/build/bot/master.cfg
==============================================================================
--- pypy/build/bot/master.cfg	(original)
+++ pypy/build/bot/master.cfg	Mon Sep 15 18:27:57 2008
@@ -15,7 +15,8 @@
     def __init__(self, *a, **kw):
         Site.__init__(self, logPath='httpd.log', *a, **kw)
 from twisted.web import server
-server.Site = LoggingSite
+if server.Site.__name__ == 'Site':
+    server.Site = LoggingSite
 # So I did.
 
 status = WebStatus(httpPortNumber, allowForce=True)



More information about the Pypy-commit mailing list