Made the reliance on conf even less user-intensive.

This commit is contained in:
Jeremy Fincher 2003-06-16 07:43:18 +00:00
parent f8a54c4872
commit a44ecb4aa0
1 changed files with 7 additions and 5 deletions

View File

@ -39,17 +39,19 @@ import cgitb
import traceback
import ansi
import conf
try:
import conf
except ImportError:
class conf:
logDir = '.'
detailedTracebacks = True
import world
###
# CONFIGURATION
###
## Uncomment this class to remove the tie to SupyBot's conf module.
## class conf:
## logDir = '.'
# Names of logfiles.
errorfile = os.path.join(conf.logDir, 'error.log')
debugfile = os.path.join(conf.logDir, 'debug.log')