-
Type: Bug
-
Resolution: Fixed
-
Priority: Major
-
Affects Version/s: VOMS-1020
-
Component/s: admin-client
-
Security Level: Public (Visbile by non-authn users.)
-
None
VOMS Admin client fails in decoding UNICODE.
In the GGUS ticket there is a proposed solution that should be verified and applied where appropriate:
--- /usr/bin/voms-admin.orig 2020-12-02 13:27:37.617916728 +0100 +++ /usr/bin/voms-admin 2020-12-02 13:28:07.392924390 +0100 @@ -239,10 +239,10 @@ if isinstance(res, types.ListType): for i in res: - print unicode(i) + print unicode(str(i),'utf-8') else: if not res is None: - print unicode(res) + print unicode(str(res),'utf-8')