Skip to content

Commit

Permalink
[hotfix] fix endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Apr 17, 2017
1 parent 8757a24 commit efaef8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/models/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ def all_table_names(self, schema=None, force=False):
self, 'table', force=force)
return tables_dict.get("", [])
return sorted(
self.db_engine_spec.get_table_names(self.inspector, schema))
self.db_engine_spec.get_table_names(schema, self.inspector))

def all_view_names(self, schema=None, force=False):
if not schema:
Expand Down

0 comments on commit efaef8f

Please sign in to comment.