Python3 fixes

pull/2/head
root 2 years ago committed by Marek Baczynski
parent a9ee37f96e
commit 21e7356a99

@ -75,7 +75,7 @@ def get_locations_in_container(containerID):
r = db_engine.execute(text(s), id=containerID)
l={}
for row in r:
l[row[0]]= row[1];
l[str(row[0])]= row[1];
r.close()
return json.dumps(l)

Loading…
Cancel
Save