[DEBUG] correct python 3 correction of dict comparing
This commit is contained in:
parent
5065c7b6ee
commit
7360adce0b
@ -694,7 +694,8 @@ class Module:
|
||||
if element==newElement:
|
||||
return
|
||||
listout.append(newElement)
|
||||
if True==order:
|
||||
if order == True:
|
||||
if type(newElement) is not dict:
|
||||
listout.sort()
|
||||
|
||||
def append_to_internal_list2(self, listout, module, list, order=False):
|
||||
|
Loading…
x
Reference in New Issue
Block a user