On Thursday, 28 February 2019 22.03.48 WEST Guenter Milde wrote: > >> diff --git a/lib/scripts/convertDefault.py > >> b/lib/scripts/convertDefault.py > >> index 8678965013..c7db4f5499 100644 > >> --- a/lib/scripts/convertDefault.py > >> +++ b/lib/scripts/convertDefault.py > >> @@ -35,7 +35,10 @@ if fout.close() != None: > >> output = fout.readline() > >> fout.close() > >> if not PY2: > >> - output = output.decode() > >> + # ensure we have a (unicode) string object in Python3 > >> + # FIXME: not required for version >= 3.5 > >> + # check whether this is required with any supported 3.x > >> version! + output = str(output)
Hi Günter, today I tried to find why the fix is required for python >= 3.5 but after an exhaustive look into python documentation I found no reference. Do you remember what is the reason for that? Best regards, -- José Abílio