Modify ↓
Opened 14 years ago
Closed 14 years ago
#7644 closed defect (fixed)
import of nonexistant module in macros.py
Reported by: | Dmitri | Owned by: | Shun-ichi Goto |
---|---|---|---|
Priority: | normal | Component: | TracWikiNegotiatorPlugin |
Severity: | trivial | Keywords: | |
Cc: | Trac Release: | 0.12 |
Description
There is no html
in trac.wiki
(I cannot find it even in trac-0.10 branch) Drop this import as it probably doesn't used anywhere:
-
wikinegotiator/macros.py
3 3 from trac import __version__ as version 4 4 from trac.core import * 5 5 from trac.config import Option, ListOption 6 from trac.wiki import WikiSystem , html6 from trac.wiki import WikiSystem 7 7 from trac.wiki.macros import WikiMacroBase 8 8 from trac.wiki.model import WikiPage
Attachments (0)
Note: See
TracTickets for help on using
tickets.
(In [9266]) Do not import non-existant module (fix #7644). It is an old garbage and trac.util.html was the right one.