Skip to content

Commit 276ff50

Browse files
authored
chore: fix a typo (#118)
1 parent ba6936b commit 276ff50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dockerflow/django/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def check_database_connected(app_configs, **kwargs):
2424
msg = "Could not connect to database: {!s}".format(e)
2525
errors.append(checks.Error(msg, id=health.ERROR_CANNOT_CONNECT_DATABASE))
2626
except ImproperlyConfigured as e:
27-
msg = 'Datbase misconfigured: "{!s}"'.format(e)
27+
msg = 'Database misconfigured: "{!s}"'.format(e)
2828
errors.append(checks.Error(msg, id=health.ERROR_MISCONFIGURED_DATABASE))
2929
else:
3030
if not connection.is_usable():

0 commit comments

Comments
 (0)