(self, option, value)
| 596 | return darkPalette |
| 597 | |
| 598 | def setConfigOption(self, option, value): |
| 599 | path = self._getConfigurationFilePath() |
| 600 | backup = self._config.copy() |
| 601 | self._parseConfigFile(path) |
| 602 | self._config[option] = value |
| 603 | backup[option] = value |
| 604 | self._saveConfig(path) |
| 605 | self._config = backup |
| 606 | |
| 607 | |
| 608 | class SafeConfigParserUnicode(ConfigParser): |
no test coverage detected