Merge branch 'master' of github.com:john-g-g/sqlite2json

Signed-off-by: Jeffrey Paul <jp@eeqj.com>
This commit is contained in:
2016-05-07 04:07:33 +02:00

View File

@@ -50,7 +50,6 @@ def get_table(cursor, table_name):
cursor.execute('SELECT * FROM main.%s' % table_name)
return [dict(zip(column_names, row)) for row in cursor.fetchall()]
def get_tables(cursor):
table_list = get_table_list(cursor)
output = {}