add print statement
This commit is contained in:
parent
fc9ff4c8b2
commit
f12d8a8062
@ -235,6 +235,8 @@ def flatten(tables):
|
|||||||
# if the item has at least two commas in it, split it
|
# if the item has at least two commas in it, split it
|
||||||
if tables[table][key].count(',') >= 2:
|
if tables[table][key].count(',') >= 2:
|
||||||
out[fullkeyname] = map(lambda x: x.strip(), tables[table][key].split(","))
|
out[fullkeyname] = map(lambda x: x.strip(), tables[table][key].split(","))
|
||||||
|
print("\"" + keyname + "\":", "\"" + str(out[fullkeyname]) + "\",")
|
||||||
|
|
||||||
|
|
||||||
print("}")
|
print("}")
|
||||||
return out
|
return out
|
||||||
|
Loading…
x
Reference in New Issue
Block a user