From 629a890556ba9ebc99700f1cab7dd6891f45c926 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Thu, 20 Feb 2020 14:08:45 +0100 Subject: [PATCH] Also check core app There is no reason we should not get a warning when accidentally breaking the core, is there ;)? --- aleksis/core/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aleksis/core/checks.py b/aleksis/core/checks.py index a5db2899a..ac222ba05 100644 --- a/aleksis/core/checks.py +++ b/aleksis/core/checks.py @@ -17,7 +17,7 @@ def check_app_configs_base_class( if app_configs is None: app_configs = django.apps.apps.get_app_configs() - for app_config in filter(lambda c: c.name.startswith("aleksis.apps."), app_configs): + for app_config in filter(lambda c: c.name.startswith("aleksis."), app_configs): if not isinstance(app_config, AppConfig): results.append( Warning( -- GitLab