1
0
Fork 0

Fix creation of nodes with existing index.

This commit is contained in:
James Turner 2015-08-03 17:39:05 -05:00
parent dec3202ba6
commit 2d119001c6

View file

@ -11,7 +11,7 @@ class Node(object):
self._parent = parent
self._name = name
self._value = None
self._index = 0
self._index = index
self._children = []
@property