ftp_pwd in config_company.ini is not allowed to contain %. Escaping was not a solution, as it seems to be parsed twice. Replacing ConfigParser() with ConfigParser(interpolation=None) in GUI_login.py allowed me to proceed, but it may have to be used project wide.
ftp_pwd
inconfig_company.ini
is not allowed to contain %. Escaping was not a solution, as it seems to be parsed twice. ReplacingConfigParser()
withConfigParser(interpolation=None)
in GUI_login.py allowed me to proceed, but it may have to be used project wide.