Hi,
we had names with german letters like 'ö' inside. They terminated the application on text output.
To correct the bug, I've changed line 151 in changesoutput.py to the following line:
print(str(i.encode(sys.stdout.encoding, errors='replace')).ljust(20), end=" ")
and imported sys.
HTH, Chris
Hi,
we had names with german letters like 'ö' inside. They terminated the application on text output.
To correct the bug, I've changed line 151 in changesoutput.py to the following line:
and imported sys.
HTH, Chris