Modify ↓
Opened 17 years ago
Closed 16 years ago
#3913 closed defect (wontfix)
dot's bug: Error: Layout was not done. Missing layout plugins?
| Reported by: | Owned by: | Peter Kropf | |
|---|---|---|---|
| Priority: | normal | Component: | GraphvizPlugin |
| Severity: | normal | Keywords: | |
| Cc: | Trac Release: | 0.11 |
Description
For dot's bug here, the plugin will also display same error.
So you should change proc_cmd from dot to dot_static
Attachments (0)
Change History (2)
comment:1 follow-up: 2 Changed 17 years ago by
comment:2 Changed 16 years ago by
| Resolution: | → wontfix |
|---|---|
| Status: | new → closed |
Replying to cboos:
Suggesting a wontfix resolution here.
Note: See
TracTickets for help on using
tickets.



Well, if you have a locally broken
dotinstallation (and don't want to or can't fix for some reason), you could as well make a local workaround in the GraphvizPlugin.For example:
Index: graphviz/graphviz.py =================================================================== --- graphviz/graphviz.py (revision 4542) +++ graphviz/graphviz.py (working copy) @@ -292,7 +292,7 @@ processor = self.processor if processor in Graphviz.Processors: - proc_cmd = self.cmds[processor] + proc_cmd = self.cmds[processor] + "_static" # ref. TH3913 else: self.log.error('render_macro: requested processor (%s) not found.' %But of course, the standard distribution of the plugin shouldn't contain such hacks. Suggesting a wontfix resolution here.