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

Signed-off-by: Jeffrey Paul <jp@eeqj.com>
This commit is contained in:
Jeffrey Paul 2016-05-07 04:07:33 +02:00
commit 4031bbf751
Signed by: sneak
GPG Key ID: 052443F4DF2A55C2
1 changed files with 0 additions and 1 deletions

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 = {}