Skip to content

Commit

Permalink
superset: fix argument swap for SqliteEngineSpec.get_table_names (#2664)
Browse files Browse the repository at this point in the history
Fix #2660
  • Loading branch information
xrmx authored and mistercrunch committed Apr 22, 2017
1 parent 54137ad commit 83abfef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/db_engine_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def convert_dttm(cls, target_type, dttm):
return "'{}'".format(iso)

@classmethod
def get_table_names(cls, inspector, schema):
def get_table_names(cls, schema, inspector):
"""Need to disregard the schema for Sqlite"""
return sorted(inspector.get_table_names())

Expand Down

0 comments on commit 83abfef

Please sign in to comment.