From b26ac91bca0a51a242b681074368f33689c9c1a1 Mon Sep 17 00:00:00 2001 From: Ero Carrera Date: Sat, 6 Nov 2010 20:45:35 +0000 Subject: [PATCH] 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 --- pydot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydot.py b/pydot.py index 3fad115..8b31767 100644 --- a/pydot.py +++ b/pydot.py @@ -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()