cudadog / pydot

Automatically exported from code.google.com/p/pydot
MIT License
0 stars 0 forks source link

pydot generates unwanted quotes on edge output #66

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by ero.carr...@gmail.com on 26 Jun 2012 at 9:39