dpaste/manage.py

16 lines
467 B
Python
Raw Normal View History

#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
# If a 'settings_local' file is present, use it
try:
2013-11-30 05:35:23 +11:00
from dpaste.settings import local
settings_module = "dpaste.settings.local"
except ImportError:
settings_module = "dpaste.settings"
os.environ.setdefault("DJANGO_SETTINGS_MODULE", settings_module)
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)