This commit is contained in:
Yax 2022-11-12 21:34:43 +01:00
parent 6f401ed3b7
commit 3e572e550c

View file

@ -78,5 +78,5 @@ class Config:
d = dict() d = dict()
for section in self._cfg.sections(): for section in self._cfg.sections():
for option in self._cfg.options(section): for option in self._cfg.options(section):
d[".".join([section, option])] = self._cfg.get(section, option) d[".".join([section, option])] = self._cfg.get(section, option)
return str(d) return str(d)