Files
heroku-buildpack-python/test/multiple-requirements/haystack/manage.py
T
2012-04-03 14:49:56 -05:00

11 lines
251 B
Python

#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "haystack.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)