This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' Dumps a config file of the type readable by ConfigParser | |
into a dictionary | |
Ref: http://docs.python.org/library/configparser.html | |
''' | |
import sys | |
import ConfigParser | |
class GetDict: | |