Return a list of options for given section, else [].
(self, section)
| 65 | return self.get(section, option, raw=raw) |
| 66 | |
| 67 | def GetOptionList(self, section): |
| 68 | "Return a list of options for given section, else []." |
| 69 | if self.has_section(section): |
| 70 | return self.options(section) |
| 71 | else: #return a default value |
| 72 | return [] |
| 73 | |
| 74 | def Load(self): |
| 75 | "Load the configuration file from disk." |