You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.
Call the write function with a list as the parameter, using more than one value in the list. For example :
graph.write_svg(somefile, prog=['twopi', 'overlap=scale'])
Expected : The graph is generated using the extra settings specified
Actual : The library raises an error saying that the command line was invalid (with the example above : "InvocationException: Program terminated with status: 2. stderr follows: Error: twopi: can't open overlap=scale")
Pydot-1.0.28-py2.7, on windows 7 x64
I think the bogus line is line 1985 :
cmdline = [self.progs[prog], '-T'+format, tmp_name] + args
The error is that the args list is appended at the end of the command list, while they should be placed between the -T and input elements (the rule being that the input files must be placed at the end of the command) Originally assigned to [email protected]
From: https://code.google.com/p/pydot/issues/detail?id=68
The text was updated successfully, but these errors were encountered:
Reported by [email protected], 2012-03-08T19:21:04Z
What steps will reproduce the problem?
graph.write_svg(somefile, prog=['twopi', 'overlap=scale'])
Expected : The graph is generated using the extra settings specified
Actual : The library raises an error saying that the command line was invalid (with the example above : "InvocationException: Program terminated with status: 2. stderr follows: Error: twopi: can't open overlap=scale")
Pydot-1.0.28-py2.7, on windows 7 x64
I think the bogus line is line 1985 :
cmdline = [self.progs[prog], '-T'+format, tmp_name] + args
The error is that the args list is appended at the end of the command list, while they should be placed between the -T and input elements (the rule being that the input files must be placed at the end of the command)
Originally assigned to [email protected]
From: https://code.google.com/p/pydot/issues/detail?id=68
The text was updated successfully, but these errors were encountered: