Django

Code

Changeset 949

Show
Ignore:
Timestamp:
10/18/05 20:16:57 (3 years ago)
Author:
adrian
Message:

Fixed #641 -- Fixed re-raise in django.core.handlers.base. Thanks, Sune

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/handlers/base.py

    r880 r949  
    7575                    if response: 
    7676                        return response 
    77                 raise e 
     77                raise 
    7878 
    7979            # Complain if the view returned None (a common error).