Edgewall Software

Changes between Initial Version and Version 1 of Ticket #3209


Ignore:
Timestamp:
Jun 2, 2006, 9:18:28 AM (18 years ago)
Author:
Christopher Lenz
Comment:

Good catch, but this is no longer applies to the current trunk, and isn't quite worth a bugfix release IMHO.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3209

    • Property Priority normallow
    • Property Milestone0.9.6
    • Property Severity normalminor
  • Ticket #3209 – Description

    initial v1  
    11While working on a plugin, I came across a problem with trac.web.api. TracError is raised but never defined. Here's a quick fix:
    22
     3{{{
    34peter@think:~/src/trac-0.9-stable> svn diff trac/web/api.py
    45Index: trac/web/api.py
     
    1213-from trac.util import http_date
    1314+from trac.util import http_date, TracError
    14 
     15}}}