(self)
| 126 | |
| 127 | |
| 128 | def saveConfig(self): |
| 129 | self.data = self.connector.getConfig() |
| 130 | self.pdata = self.connector.getPluginConfig() |
| 131 | |
| 132 | self.saveSection(self.sections, self.data) |
| 133 | self.saveSection(self.psections, self.pdata, "plugin") |
| 134 | |
| 135 | |
| 136 | def saveSection(self, sections, pdata, sec="core"): |
nothing calls this directly
no test coverage detected