From 122c90a43b2486bf278def8f068b6d1cebaa66f9 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sun, 2 Oct 2016 18:23:32 +0200 Subject: Fixed #27305 -- Removed BaseCommand.can_import_settings unused attribute Thanks Tim Graham for the review. --- tests/user_commands/management/commands/leave_locale_alone_false.py | 1 - tests/user_commands/management/commands/leave_locale_alone_true.py | 1 - 2 files changed, 2 deletions(-) (limited to 'tests/user_commands') diff --git a/tests/user_commands/management/commands/leave_locale_alone_false.py b/tests/user_commands/management/commands/leave_locale_alone_false.py index e03ad1cab0..aa3e20664a 100644 --- a/tests/user_commands/management/commands/leave_locale_alone_false.py +++ b/tests/user_commands/management/commands/leave_locale_alone_false.py @@ -4,7 +4,6 @@ from django.utils import translation class Command(BaseCommand): - can_import_settings = True leave_locale_alone = False def handle(self, *args, **options): diff --git a/tests/user_commands/management/commands/leave_locale_alone_true.py b/tests/user_commands/management/commands/leave_locale_alone_true.py index 9861221e39..3100a2901b 100644 --- a/tests/user_commands/management/commands/leave_locale_alone_true.py +++ b/tests/user_commands/management/commands/leave_locale_alone_true.py @@ -4,7 +4,6 @@ from django.utils import translation class Command(BaseCommand): - can_import_settings = True leave_locale_alone = True def handle(self, *args, **options): -- cgit v1.2.1