mirror of
https://github.com/Hopiu/django.git
synced 2026-04-28 02:34:52 +00:00
11 lines
265 B
Python
11 lines
265 B
Python
from django.core.management.base import BaseCommand
|
|
from django.utils import translation
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
can_import_settings = True
|
|
leave_locale_alone = False
|
|
|
|
def handle(self, *args, **options):
|
|
return translation.get_language()
|