writing any file:
G.write_png("aaa.png")
expected:
No con window
really:
open console while dot command is executed
on windows XP pydot-1.0.25
can be corrected if
in pydot.py line 1961
p = subprocess.Popen(
cmdline,
cwd=tmp_dir,
stderr=subprocess.PIPE, stdout=subprocess.PIPE)
change to:
p = subprocess.Popen(
cmdline,
cwd=tmp_dir,
stderr=subprocess.PIPE, stdout=subprocess.PIPE,shell=1)
May be it's incorrect for outher OS?
Original issue reported on code.google.com by doza...@mail.ru on 11 Aug 2011 at 7:29
Original issue reported on code.google.com by
doza...@mail.ru
on 11 Aug 2011 at 7:29