I am using ConfigParser and I want to be able to get a text variable that has empty lines. For example my config file looks like
[config]
text = hello
goodbye
but when I display text it is
hello
goodbye
It ignores the empty line. I am wondering if there is a way to add a \n or something so it puts a blank empty line there
*EDIT:*I tried parser = SafeConfigParser(allow_no_value=True)
I tried placing \n in the config file, but that is just read as text.