Fix creation of nodes with existing index.
This commit is contained in:
parent
dec3202ba6
commit
2d119001c6
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ class Node(object):
|
||||||
self._parent = parent
|
self._parent = parent
|
||||||
self._name = name
|
self._name = name
|
||||||
self._value = None
|
self._value = None
|
||||||
self._index = 0
|
self._index = index
|
||||||
self._children = []
|
self._children = []
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Reference in a new issue