Fixed issue 42. Graphviz's executable "sfdp" has been included in the list of executables to search for and will now be found if available.

git-svn-id: http://pydot.googlecode.com/svn/trunk@13 06aa9b79-7134-0410-ae7e-c1cd3e483e87
This commit is contained in:
Ero Carrera 2010-11-06 20:45:35 +00:00
parent af70b334cf
commit b26ac91bca

View File

@ -345,7 +345,7 @@ def __find_executables(path):
"""
success = False
progs = {'dot': '', 'twopi': '', 'neato': '', 'circo': '', 'fdp': ''}
progs = {'dot': '', 'twopi': '', 'neato': '', 'circo': '', 'fdp': '', 'sfdp': ''}
was_quoted = False
path = path.strip()