]> jfr.im git - erebus.git/blobdiff - config.py
admin_config - add !getconfig, remove some unused functions
[erebus.git] / config.py
index b05089249cef45bb1b1e5c552c6b8cdd0c0df9f7..9755f84644d25ac076c05d521973bf04f4c79328 100644 (file)
--- a/config.py
+++ b/config.py
@@ -12,7 +12,7 @@ else:
 
 class Config(object):
        def __init__(self, filename, writeout=True):
-               self.__dict__['config'] = ConfigParser.RawConfigParser()
+               self.__dict__['config'] = ConfigParser.RawConfigParser(delimiters=('=',))
                self.__dict__['filename'] = filename
                self.__dict__['writeout'] = writeout
                self.config.read(filename)
@@ -47,7 +47,9 @@ class Config(object):
                        return default
        def getboolean(self, section, key, default=False):
                val = self.get(section, key, default)
-               if val == False or val == "0" or val.lower() == "false":
+               if type(val) is bool:
+                       return val
+               elif val == "0" or val.lower() == "false":
                        return False
                else:
                        return True
@@ -58,8 +60,13 @@ class Config(object):
                self.config.set(section, key, str(value))
                if self.writeout: self.write()
 
+       def delete(self, section, key):
+               if self.config.has_section(section):
+                       self.config.remove_option(section, key)
+               if self.writeout: self.write()
+
        def write(self):
-               with open(self.filename+'.tmp', 'wb') as configfile:
+               with open(self.filename+'.tmp', 'w') as configfile:
                        self.config.write(configfile)
                        os.rename(configfile.name, self.filename)