diff options
| author | Hasan Ramezani <hasan.r67@gmail.com> | 2020-05-14 00:00:41 +0200 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2020-05-21 12:34:54 +0200 |
| commit | c60524c658f197f645b638f9bcc553103bfe2630 (patch) | |
| tree | 46c3f2c654626caddbd2764b195adf2fcb4a21fa /tests/admin_scripts/management/commands/label_command.py | |
| parent | a4e6030904df63b3f10aa0729b86dc6942b0458e (diff) | |
Fixed #31546 -- Allowed specifying list of tags in Command.requires_system_checks.
Diffstat (limited to 'tests/admin_scripts/management/commands/label_command.py')
| -rw-r--r-- | tests/admin_scripts/management/commands/label_command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_scripts/management/commands/label_command.py b/tests/admin_scripts/management/commands/label_command.py index 5bffeb3ae2..981b88ade4 100644 --- a/tests/admin_scripts/management/commands/label_command.py +++ b/tests/admin_scripts/management/commands/label_command.py @@ -3,7 +3,7 @@ from django.core.management.base import LabelCommand class Command(LabelCommand): help = "Test Label-based commands" - requires_system_checks = False + requires_system_checks = [] def handle_label(self, label, **options): print('EXECUTE:LabelCommand label=%s, options=%s' % (label, sorted(options.items()))) |
