You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
The text was updated successfully, but these errors were encountered:
dhohn
changed the title
"%" is password is interpreted as formatting operator
"%" in password is interpreted as formatting operator
Mar 24, 2022
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)
.The text was updated successfully, but these errors were encountered: