This commit is contained in:
Jeffrey Paul 2016-05-07 01:45:31 +00:00
commit cc1214a3ea
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ def sqlite2json(exclude_tables=None,db_file=None):
return json.dumps(get_tables(cursor))
def get_table_list(cursor, exclude_tables=exclude_tables):
def get_table_list(cursor, exclude_tables=set([]):
cursor.execute('SELECT * FROM main.sqlite_master WHERE type="table"')
return set(row[1] for row in cursor.fetchall()) - exclude_tables