Skip to content

Commit

Permalink
chore: fix a typo (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaWong authored Sep 11, 2024
1 parent ba6936b commit 276ff50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dockerflow/django/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def check_database_connected(app_configs, **kwargs):
msg = "Could not connect to database: {!s}".format(e)
errors.append(checks.Error(msg, id=health.ERROR_CANNOT_CONNECT_DATABASE))
except ImproperlyConfigured as e:
msg = 'Datbase misconfigured: "{!s}"'.format(e)
msg = 'Database misconfigured: "{!s}"'.format(e)
errors.append(checks.Error(msg, id=health.ERROR_MISCONFIGURED_DATABASE))
else:
if not connection.is_usable():
Expand Down

0 comments on commit 276ff50

Please sign in to comment.