Changeset 7168
- Timestamp:
- 02/27/08 19:52:59 (8 months ago)
- Files:
-
- django/trunk/django/core/handlers/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/handlers/base.py
r7068 r7168 110 110 return http.HttpResponseForbidden('<h1>Permission denied</h1>') 111 111 except SystemExit: 112 pass # See http://code.djangoproject.com/ticket/1023 112 # Allow sys.exit() to actually exit. See tickets #1023 and #4701 113 raise 113 114 except: # Handle everything else, including SuspiciousOperation, etc. 114 115 # Get the exception info now, in case another exception is thrown later.
