Modify ↓
Opened 20 years ago
Closed 20 years ago
#1553 closed defect (fixed)
loader.py: syntax error
Reported by: | Emmanuel Blot | Owned by: | Christopher Lenz |
---|---|---|---|
Priority: | normal | Milestone: | 0.9 |
Component: | general | Version: | devel |
Severity: | major | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
[1667] trac/loader.py +56
module = _load_module(head, head, None, path) if not module: raise ImportError, 'No module named ' + module_name
module_name
does not exist in this context (maybe a copy n' paste from the next lines)
This typo causes the loader to raise an exception when a custom module is loaded.
Attachments (0)
Change History (2)
comment:1 by , 20 years ago
Status: | new → assigned |
---|
comment:2 by , 20 years ago
Milestone: | → 0.9 |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Fixed in [1673].
Note:
See TracTickets
for help on using tickets.
Good catch.