15 lines
224 B
Python
15 lines
224 B
Python
|
'''
|
||
|
Created on 26.11.2010
|
||
|
|
||
|
@author: morozov
|
||
|
'''
|
||
|
|
||
|
import os, sys
|
||
|
includedir = os.path.dirname(__file__)
|
||
|
serverdir = includedir + os.sep + '..'
|
||
|
sys.path.append(serverdir)
|
||
|
|
||
|
def readConfig():
|
||
|
import config
|
||
|
return config
|