Skip to content

Commit

Permalink
chore: Fix grammar (#22831)
Browse files Browse the repository at this point in the history
  • Loading branch information
john-bodley authored Feb 4, 2023
1 parent cf395ac commit 5bafb5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/databases/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ def select_star(
)
except NoSuchTableError:
self.incr_stats("error", self.select_star.__name__)
return self.response(404, message="Table not found on the database")
return self.response(404, message="Table not found in the database")
self.incr_stats("success", self.select_star.__name__)
return self.response(200, result=result)

Expand Down

0 comments on commit 5bafb5c

Please sign in to comment.