Clean up imports, done messing with this for a while. Please help test it.

This commit is contained in:
Greg Taylor 2009-01-15 15:12:31 +00:00
parent f4b784cfa9
commit f5ba11e7e7

View file

@ -6,10 +6,10 @@ Sets the appropriate environmental variables and launches the server
process. Run the script with the -h flag to see usage information.
"""
from optparse import OptionParser
import os # for OS related fonctions
import sys # for getting command line arguments
import signal
from subprocess import Popen, call
import os
import sys
import signal
# Set the Python path up so we can get to settings.py from here.
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))