Add manage.py (oops).

(imported from commit ee314b56312527adcd13e08cd515c3e643cfee2e)
This commit is contained in:
Jessica McKellar 2012-08-28 12:45:35 -04:00 committed by Tim Abbott
parent 39f5bb609a
commit 67212f2e7a
1 changed files with 10 additions and 0 deletions

10
manage.py Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "humbug.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)