mirror of
https://github.com/Hopiu/django.git
synced 2026-05-12 01:23:09 +00:00
10 lines
234 B
Python
10 lines
234 B
Python
from django.core.management.base import BaseCommand
|
|
from django.utils import translation
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
leave_locale_alone = False
|
|
|
|
def handle(self, *args, **options):
|
|
return translation.get_language()
|