leave_locale_alone_true.py 233 B

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