Modify ↓
#3209 closed defect (fixed)
TracError not imported in trac.web.api
Reported by: | Owned by: | Jonas Borgström | |
---|---|---|---|
Priority: | low | Milestone: | 0.9.6 |
Component: | general | Version: | 0.9.5 |
Severity: | minor | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description (last modified by )
While working on a plugin, I came across a problem with trac.web.api. TracError is raised but never defined. Here's a quick fix:
peter@think:~/src/trac-0.9-stable> svn diff trac/web/api.py Index: trac/web/api.py =================================================================== --- trac/web/api.py (revision 3356) +++ trac/web/api.py (working copy) @@ -20,7 +20,7 @@ import urlparse from trac.core import Interface -from trac.util import http_date +from trac.util import http_date, TracError
Attachments (0)
Change History (2)
comment:1 by , 18 years ago
Description: | modified (diff) |
---|---|
Milestone: | → 0.9.6 |
Priority: | normal → low |
Severity: | normal → minor |
Note:
See TracTickets
for help on using tickets.
Good catch, but this is no longer applies to the current trunk, and isn't quite worth a bugfix release IMHO.