See previous commit...

This commit is contained in:
Anna Rose Wiggins 2012-04-16 13:00:56 -04:00
parent 17a49169eb
commit 704e7209a6
3 changed files with 116 additions and 76 deletions

11
lib/config.py Normal file
View file

@ -0,0 +1,11 @@
import ConfigParser
def init():
global config
config = read_config_file()
def read_config_file():
ret = ConfigParser.ConfigParser()
ret.read('pygo.cfg')
return ret