I have a config file and it has an item as:
[time_format]
iso = "ISO (2015-12-31 13:30:55)"
I read the config file with configobj as:
config = ConfigObj(file_name);
section = config.keys();
After some reading, I write the config without modifying the above item as:
config.write();
The item in the config file becomes:
iso = ISO (2015-12-31 13:30:55)
The quotes disappear. Is there any way to keep the quotes?