Changeset 1510 for trunk/pylucid/PyLucid/middlewares/common.py
- Timestamp:
- 03/27/08 16:59:44 (8 months ago)
- Files:
-
- 1 modified
-
trunk/pylucid/PyLucid/middlewares/common.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/middlewares/common.py
r1507 r1510 31 31 from PyLucid.system.exceptions import LowLevelError 32 32 from PyLucid.system.template import render_help_page 33 from PyLucid.system.utils import setup_debug 33 34 34 35 … … 58 59 """ 59 60 def process_request(self, request): 61 # add the attribute "debug" to the request object. 62 setup_debug(request) 63 60 64 try: 61 65 session_middleware.process_request(request) … … 64 68 except Exception, e: 65 69 raise_non_table_error(e) 66 67 70 68 71 def process_view(self, request, view_func, view_args, view_kwargs):
