Fixed issue with incorrect import

This commit is contained in:
Serg Melikyan 2013-03-27 10:48:07 +04:00
parent 2dc4c0e9e4
commit 5d7c2b6235
1 changed files with 2 additions and 4 deletions

View File

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