If section doesn't exist, add it.
(self, section)
| 108 | return False |
| 109 | |
| 110 | def AddSection(self, section): |
| 111 | "If section doesn't exist, add it." |
| 112 | if not self.has_section(section): |
| 113 | self.add_section(section) |
| 114 | |
| 115 | def RemoveEmptySections(self): |
| 116 | "Remove any sections that have no options." |