Modify ↓
#3663 closed defect (duplicate)
Fail to render without graphviz option
Reported by: | anonymous | Owned by: | Peter Kropf |
---|---|---|---|
Priority: | normal | Component: | GraphvizPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
If option string is empty, graphviz regard it as a input filename.
Here is the patch:
-
graphvizplugin/0.11/graphviz/graphviz.py
421 421 422 422 def launch(self, cmd, input): 423 423 """Launch a process (cmd), and returns exitcode, stdout + stderr""" 424 p = subprocess.Popen( cmd,424 p = subprocess.Popen([a for a in cmd if len(a) > 0], 425 425 stdin=subprocess.PIPE, 426 426 stdout=subprocess.PIPE, 427 427 stderr=subprocess.PIPE)
Attachments (0)
Change History (2)
comment:1 Changed 16 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
comment:2 Changed 16 years ago by
Ah, of course, here this is still 0.10.something ;-)
See comment:ticket:3605:3 ...
Note: See
TracTickets for help on using
tickets.
Right, same problem, similar fix suggested in ticket:3605#comment:3