Fix Python 3 compatibility.

pull/3/head
Dave Page 2017-02-13 10:07:38 +00:00
parent 1340c1c2ee
commit 14f181d2ba
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class TestTablesNode(BaseTestGenerator):
for index, description in enumerate(cursor.description):
first_row[description.name] = fetch_result[0][index]
print first_row
print (first_row)
oid = first_row['oid']
name = first_row['name']