From f5ba11e7e72e753db65dd107f4fd2dba361d0ac9 Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Thu, 15 Jan 2009 15:12:31 +0000 Subject: [PATCH] Clean up imports, done messing with this for a while. Please help test it. --- game/evennia.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/game/evennia.py b/game/evennia.py index 07f4a3c263..6ad41ec6a1 100755 --- a/game/evennia.py +++ b/game/evennia.py @@ -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__))))