diff options
Diffstat (limited to 'scripts/devtool')
| -rwxr-xr-x | scripts/devtool | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/scripts/devtool b/scripts/devtool index 4780390654..9ac6e798d2 100755 --- a/scripts/devtool +++ b/scripts/devtool @@ -86,6 +86,11 @@ class ConfigHandler(object):          with open(self.config_file, 'w') as f:              self.config_obj.write(f) +    def set(self, section, option, value): +        if not self.config_obj.has_section(section): +            self.config_obj.add_section(section) +        self.config_obj.set(section, option, value) +  class Context:      def __init__(self, **kwargs):          self.__dict__.update(kwargs) | 
