Kaydet (Commit) 29d1598c authored tarafından Adrian Holovaty's avatar Adrian Holovaty

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

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1488 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 5a54455a
......@@ -665,6 +665,8 @@ def resolve_variable(path, context):
except SilentVariableFailure:
current = ''
except TypeError: # arguments *were* required
# GOTCHA: This will also catch any TypeError
# raised in the function itself.
current = '' # invalid method call
except (TypeError, AttributeError):
try: # list-index lookup
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment