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.
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
Reported by [email protected], 2012-02-15T19:31:23Z
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.
Originally assigned to [email protected]
Attached
pydot_fix_need_quotes.patch
(view on Gist)From: https://code.google.com/p/pydot/issues/detail?id=66
The text was updated successfully, but these errors were encountered: