Skip to content

Commit

Permalink
Fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb authored Jan 10, 2022
1 parent 0bd3f1b commit 2694d11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions explorer/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ def __getitem__(self, item):
if item in djcs:
# Original connection handling did lookups by the django names not the explorer
# alias. To support stored uses of URLs accessing connections by the old name
# (such as schema), we support the django db connectin name as long as it is
# (such as schema), we support the django db connection name as long as it is
# mapped by some alias in EXPLORER_CONNECTIONS, so as to prevent access to
# Django DB connections never meant to be exposed by Explorer
# Django DB connections, never meant to be exposed by Explorer
if item not in EXPLORER_CONNECTIONS.values():
raise InvalidExplorerConnectionException(
f"Attempted to access connection {item} which is "
Expand Down

0 comments on commit 2694d11

Please sign in to comment.