From 575e2649acd5b641c9404af3b6a5e2761213dc61 Mon Sep 17 00:00:00 2001 From: Scot Hacker Date: Mon, 11 Mar 2019 00:34:55 -0700 Subject: [PATCH] Fix dal_check integrity error when autocomplete not enabled --- todo/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo/check.py b/todo/check.py index 3b72496..68560ce 100644 --- a/todo/check.py +++ b/todo/check.py @@ -8,7 +8,7 @@ def dal_check(app_configs, **kwargs): from todo.features import HAS_AUTOCOMPLETE if not HAS_AUTOCOMPLETE: - return + return [] errors = [] missing_apps = {'dal', 'dal_select2'} - set(settings.INSTALLED_APPS)