All the values for the OIDC client configuration are supposed to be written out as strings, but base64.b64encode() writes out a bytearray in Python 3. Fix that by transforming it into a string.
Signed-off-by: Neal Gompa ngompa13@gmail.com
rebased onto dda8ce2a850238e23f9439cb8a09f905808a1e73
Pull-Request has been merged by simo
All the values for the OIDC client configuration are supposed to be
written out as strings, but base64.b64encode() writes out a bytearray
in Python 3. Fix that by transforming it into a string.
Signed-off-by: Neal Gompa ngompa13@gmail.com