mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-11 07:17:54 +00:00
10 lines
247 B
Python
10 lines
247 B
Python
|
#!/usr/bin/env python
|
||
|
import os, sys
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pyi2phosts.settings")
|
||
|
|
||
|
from django.core.management import execute_from_command_line
|
||
|
|
||
|
execute_from_command_line(sys.argv)
|