django/tests/user_commands/management/commands/leave_locale_alone_true.py

12 lines
264 B
Python

from django.core.management.base import BaseCommand
from django.utils import translation
class Command(BaseCommand):
can_import_settings = True
leave_locale_alone = True
def handle(self, *args, **options):
return translation.get_language()