Changeset 6292
- Timestamp:
- 09/15/07 11:34:41 (10 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
r6221 r6292 117 117 # Get the exception info now, in case another exception is thrown later. 118 118 exc_info = sys.exc_info() 119 receivers = dispatcher.send(signal=signals.got_request_exception )119 receivers = dispatcher.send(signal=signals.got_request_exception, request=request) 120 120 # When DEBUG is False, send an error message to the admins. 121 121 subject = 'Error (%s IP): %s' % ((request.META.get('REMOTE_ADDR') in settings.INTERNAL_IPS and 'internal' or 'EXTERNAL'), request.path)
