[pypy-svn] r40539 - pypy/dist/pypy/tool/build/web

guido at codespeak.net guido at codespeak.net
Thu Mar 15 16:22:12 CET 2007


Author: guido
Date: Thu Mar 15 16:22:09 2007
New Revision: 40539

Modified:
   pypy/dist/pypy/tool/build/web/app.py
Log:
Oops, was referring to a variable of the main block when inside a nested one...


Modified: pypy/dist/pypy/tool/build/web/app.py
==============================================================================
--- pypy/dist/pypy/tool/build/web/app.py	(original)
+++ pypy/dist/pypy/tool/build/web/app.py	Thu Mar 15 16:22:09 2007
@@ -306,7 +306,8 @@
                  'build_end_time': format_time(b.build_end_time) or '-',
                  'status': i['status'],
                  'statusclass': i['status'].replace(' ', '_'),
-                 'error': i.get('error', '')}
+                 'error': i.get('error', ''),
+                 'vhostroot': config.vhostroot}
                 for (i, b) in data]
 
 class Builds(Collection):



More information about the Pypy-commit mailing list