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