I happen to have a "%" character in my openid pwd. When I enter it as is in the credentials file (or the init wizard) it is recognised as the python formatting operator.
configparser.InterpolationSyntaxError: '%' must be followed by '%' or '(', found: 'somepartialpassword'
A workaround is to escape it like "%%" or just changing password.
A solution is probably disabling interpolation in configparser e.g. ConfigParser(interpolation=None).
I happen to have a "%" character in my openid pwd. When I enter it as is in the credentials file (or the init wizard) it is recognised as the python formatting operator.
configparser.InterpolationSyntaxError: '%' must be followed by '%' or '(', found: 'somepartialpassword'
A workaround is to escape it like "%%" or just changing password.
A solution is probably disabling interpolation in configparser e.g.
ConfigParser(interpolation=None)
.