Closed ronaldoussoren closed 7 years ago
Original comment by Ronald Oussoren (Bitbucket: ronaldoussoren, GitHub: ronaldoussoren).
Thanks for the patch!
Original comment by Ronald Oussoren (Bitbucket: ronaldoussoren, GitHub: ronaldoussoren).
I've committed the patch in changeset 252fb9c919d8
Original report by elnuno (Bitbucket: elnuno, GitHub: elnuno).
When asking for dot output in Python 3, only (empty) subgraphs were being rendered.
In Python 3,
map
returns an iterator, not a list.itergraphreport
createsnodes
as such an iterator which gets exhausted the first time we iterate it. Then we try to use it again.The simplest fix is to turn nodes into a list: