Ticket #3423: correcao.diff
| File correcao.diff, 0.6 kB (added by jtoledo, 2 months ago) |
|---|
-
graphviz.py
old new 420 420 421 421 422 422 def launch(self, cmd, input): 423 """Launch a process (cmd), and returns exitcode,stdout + stderr"""424 p = subprocess.Popen( cmd,423 """Launch a process (cmd), and returns stdout + stderr""" 424 p = subprocess.Popen([i for i in cmd if i], 425 425 stdin=subprocess.PIPE, 426 426 stdout=subprocess.PIPE, 427 427 stderr=subprocess.PIPE)
