mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-04-24 19:32:53 +03:00
13 lines
263 B
Python
13 lines
263 B
Python
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
os.environ.setdefault(
|
|
'DJANGO_SETTINGS_MODULE',
|
|
'settings'
|
|
)
|
|
|
|
from django.core.management import execute_from_command_line
|
|
execute_from_command_line(sys.argv)
|