leave_locale_alone_true.py 263 B

12345678910
  1. from django.core.management.base import BaseCommand
  2. from django.utils import translation
  3. class Command(BaseCommand):
  4. can_import_settings = True
  5. leave_locale_alone = True
  6. def handle(self, *args, **options):
  7. return translation.get_language()