equal
deleted
inserted
replaced
46 self._cfg.load() |
46 self._cfg.load() |
47 if not skip_some_checks: |
47 if not skip_some_checks: |
48 self._cfg.check() |
48 self._cfg.check() |
49 self._chkenv() |
49 self._chkenv() |
50 |
50 |
51 def cfgSet(self, option, value): |
51 def cfg_set(self, option, value): |
|
52 """Set a new value for the given option.""" |
52 return self._cfg.set(option, value) |
53 return self._cfg.set(option, value) |
53 |
54 |
54 def configure(self, section=None): |
55 def configure(self, section=None): |
55 """Starts the interactive configuration. |
56 """Starts the interactive configuration. |
56 |
57 |