# HG changeset patch # User Gustavo Andres Morero # Date 1596750869 10800 # Thu Aug 06 18:54:29 2020 -0300 # Node ID cf9ade31a69a477bf35e572a909378464c22ec20 # Parent bb3fb73065d4b4f2ae4bb530e10d34a00a1e8795 fixing typo on checks error code. diff --git a/nlotp/checks.py b/nlotp/checks.py --- a/nlotp/checks.py +++ b/nlotp/checks.py @@ -81,7 +81,7 @@ f"needs '{app['key']}' in INSTALLED_APPS.", obj="nlotp", hint=app["hint"], - id=f"nlopt.{app['code']}", + id=f"nlotp.{app['code']}", ) ) return errors @@ -96,7 +96,7 @@ f"needs 'settings.{setting['key']}' defined.", obj="nlotp", hint=setting["hint"], - id=f"nlopt.{setting['code']}", + id=f"nlotp.{setting['code']}", ) ) return errors @@ -111,7 +111,7 @@ f"needs '{middleware['key']}' in settings.MIDDLEWARE.", obj="nlotp", hint=middleware["hint"], - id=f"nlopt.{middleware['code']}", + id=f"nlotp.{middleware['code']}", ) ) return errors @@ -126,7 +126,7 @@ f"'settings.{setting['key']}' is missing.", obj="nlotp", hint=setting["hint"], - id=f"nlopt.{setting['code']}", + id=f"nlotp.{setting['code']}", ) ) return warnings