Things should be working again, minus the web stuff.

This commit is contained in:
Greg Taylor 2008-12-15 04:35:00 +00:00
parent 322c626295
commit 5249f27074
19 changed files with 44 additions and 38 deletions

View file

@ -1,7 +1,13 @@
#!/usr/bin/env python
import sys
import os
from django.core.management import execute_manager
# Tack on the root evennia directory to the python path.
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
try:
import settings # Assumed to be in the same directory.
from game import settings
except ImportError:
import sys
sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__)