示例#1
0
 def __init__(self, configfilename):
     ConfigProvider.__init__(self)
     if not os.path.isfile(configfilename):
         self.ConfigValid = False
         return
     self._config = configparser.ConfigParser()
     self._config.read(configfilename)
     self.ConfigValid = True
 def __init__(self):
     ConfigProvider.__init__(self)
     self._config = configparser.ConfigParser()
     self.ConfigValid=True