#10552 closed (duplicate)
Built-in template fails "lowdly" with exception
Description ¶
length_is filter causes an exception if it's used with None intead of something that has len() method. According to docs this should never happen (tags and filters fails silently).
Exception Value: Caught an exception while rendering: object of type 'NoneType' has no len() Original Traceback (most recent call last): File "/usr/local/lib/python2.5/site-packages/django/template/debug.py", line 71, in render_node result = node.render(context) File "/usr/local/lib/python2.5/site-packages/django/template/defaulttags.py", line 250, in render value = bool_expr.resolve(context, True) File "/usr/local/lib/python2.5/site-packages/django/template/__init__.py", line 559, in resolve new_obj = func(obj, *arg_vals) File "/usr/local/lib/python2.5/site-packages/django/template/defaultfilters.py", line 523, in length_is return len(value) == int(arg) TypeError: object of type 'NoneType' has no len()
Change History (3)
comment:1 by , 16 years ago
milestone: | → 1.1 |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 16 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
This is a dupe of #8462 and was fixed in r10193/r10194