9 lines
200 B
Python
9 lines
200 B
Python
|
#!/usr/bin/env python2
|
||
|
import sys
|
||
|
import setup_django_environment
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
from django.core.management import execute_from_command_line
|
||
|
|
||
|
execute_from_command_line(sys.argv)
|