]> jfr.im git - erebus.git/blobdiff - config.py
add twitter announcing of new rounds & auto stop questioning
[erebus.git] / config.py
index c8a461bd2572843901ab049b3cafe799745b1807..ab3f467f2acb119831302f46e274ba2d02304236 100644 (file)
--- a/config.py
+++ b/config.py
@@ -25,6 +25,12 @@ class Config(object):
        def items(self, section='erebus'):
                return self.config.items(section)
 
+       def get(self, section, key):
+               return self.config.get(section, key)
+
+       def set(self, section, key, value):
+               self.config.set(section, key, value)
+
        def write(self):
                with open(self.filename, 'wb') as configfile:
                        self.config.write(configfile)