Changes between Initial Version and Version 2 of Ticket #6784
- Timestamp:
- Jun 16, 2008, 4:19:00 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6784
- Property Has patch unset
- Property Triage Stage Unreviewed → Accepted
-
Ticket #6784 – Description
initial v2 1 the error is in django/contrib/comments/templatetags/comments.py, line 209: kwargs[option] = (args == 'true')[[BR]] 2 it should be: kwargs[option] = (args == 'yes') 1 the error is in django/contrib/comments/templatetags/comments.py, line 209: 2 {{{ 3 kwargs[option] = (args == 'true') 4 }}} 5 6 it should be: 7 {{{ 8 kwargs[option] = (args == 'yes') 9 }}} 3 10 4 11 or the example usage in the docstring should be corrected