Coverage for lutris.util.settings : 68%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
""" ConfigParser abstraction """
except ConfigParser.NoSectionError: value = None
if not self.config.has_section(section): self.config.add_section(section) self.config.set(section, key, value)
with open(self.config_file, 'wb') as config_file: self.config.write(config_file) |