From 1477ba44b62c419d12ebec86e56973f1ae56f712 Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Thu, 18 Aug 2022 11:51:07 +0930 Subject: [PATCH] #112 - Django 4.1 requires_system_checks must be a list or tuple --- .../management/commands/collectstatic_js_reverse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_js_reverse/management/commands/collectstatic_js_reverse.py b/django_js_reverse/management/commands/collectstatic_js_reverse.py index d1e758a..393230a 100755 --- a/django_js_reverse/management/commands/collectstatic_js_reverse.py +++ b/django_js_reverse/management/commands/collectstatic_js_reverse.py @@ -18,7 +18,7 @@ class Command(BaseCommand): help = 'Creates a static urls-js file for django-js-reverse' - requires_system_checks = False + requires_system_checks = [] # Disable checks def get_location(self): output_path = getattr(settings, 'JS_REVERSE_OUTPUT_PATH', JS_OUTPUT_PATH) if output_path: