Django

Code

Changeset 1488

Show
Ignore:
Timestamp:
11/28/05 23:53:05 (3 years ago)
Author:
adrian
Message:

Added a GOTCHA comment in django/core/template/init.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/template/__init__.py

    r1461 r1488  
    666666                                current = '' 
    667667                            except TypeError: # arguments *were* required 
     668                                # GOTCHA: This will also catch any TypeError 
     669                                # raised in the function itself. 
    668670                                current = '' # invalid method call 
    669671                except (TypeError, AttributeError):