Idiotic bug erradicated
This commit is contained in:
parent
ff8c80ceed
commit
f4156723d5
1 changed files with 2 additions and 2 deletions
|
@ -267,12 +267,12 @@ class LogicObject(object):
|
|||
# Añadimos el nodo, y obtenemos la referencia
|
||||
new_parent_node = treestore.append(parent_node,
|
||||
[str(key_val),
|
||||
"", unicode(type(elem))])
|
||||
"", ""])
|
||||
for elem in elems[key_val]:
|
||||
if type(elem) is dict:
|
||||
another_node = treestore.append(new_parent_node,
|
||||
[unicode(key_val) + u"[" + unicode(count) + u"]",
|
||||
"", ""])
|
||||
"", unicode(type(elem))])
|
||||
self._loadTreeRec(treestore, elem, another_node)
|
||||
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue