Changes between Initial Version and Version 2 of Ticket #6784


Ignore:
Timestamp:
Jun 16, 2008, 4:19:00 PM (16 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6784

    • Property Has patch unset
    • Property Triage Stage UnreviewedAccepted
  • 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')
     1the error is in django/contrib/comments/templatetags/comments.py, line 209:
     2{{{
     3kwargs[option] = (args == 'true')
     4}}}
     5
     6it should be:
     7{{{
     8kwargs[option] = (args == 'yes')
     9}}}
    310
    411or the example usage in the docstring should be corrected
Back to Top