Commit 0bc0f799 by Steven Bird

Fixed big in DependencyGraph.tree reported by Rob Malouf; resolves issue 716

parent f6540ce3
...@@ -200,7 +200,7 @@ class DependencyGraph(object): ...@@ -200,7 +200,7 @@ class DependencyGraph(object):
is a leaf) or a L{Tree}. is a leaf) or a L{Tree}.
""" """
node = self.nodelist[i] node = self.get_by_address(i)
word = node['word'] word = node['word']
deps = node['deps'] deps = node['deps']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment