diff --git a/libs/bflb_configobj.py b/libs/bflb_configobj.py index e7b6edc..4220a34 100644 --- a/libs/bflb_configobj.py +++ b/libs/bflb_configobj.py @@ -17,6 +17,9 @@ class ConfigObj: def get(self, section, key): return self.config.get(section, key) + def options(self, section): + return self.config.options(section) + def set(self, section, key, value): return self.config.set(section, key, value) @@ -47,6 +50,9 @@ class BFConfigParser: return '' return ret + def options(self, section): + return self.cfg_obj.options(section) + def set(self, section, key, value): self.cfg_obj.set(section, key, str(value))