When generating edges with nodes name starting with a digit, unwanted quotes
appear if src or dst includes a letter.
pydot.Edge("1111:1111","2222")
===> 1111:1111 -- 2222
but
pydot.Edge("1111:1111x","2222")
===> "1111:1111x" -- 2222
Since dot does not interpret properly port when quotes are present, this is
bogus. See attached patch.
Original issue reported on code.google.com by bruno.st...@gmail.com on 15 Feb 2012 at 6:31
Original issue reported on code.google.com by
bruno.st...@gmail.com
on 15 Feb 2012 at 6:31Attachments: