fedora-happiness-packets/manage.py

10 lines
259 B
Python
Raw Normal View History

2018-03-21 12:45:07 -05:00
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "happinesspackets.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)