WIP lookup commands

This commit is contained in:
DiG 2022-01-17 15:35:24 +01:00
parent 418482db5f
commit 1f4ef6f39d
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ def flatten_stack( data ):
eprint( 'is a list')
for item in obj:
print( 'item: ', item, type(item))
if type(item) == str:
if type(item) in (str,unicode):
eprint( 'sub item is a str')
flat.append( item )
if type(item) == dict: