When trying to run ./LAUNCH.sh -t from a disposable VM, I came across this error which appeared to be related to character encoding. This pull request adds an encoding filter to alleviate issues where the locale for the installation is not compatible with whatever the output is.
Splash List:
Traceback (most recent call last):
File "./splash_manager.py", line 823, in
tests()
File "./splash_manager.py", line 794, in tests
print(get_all_running_splash_docker(r_text=True))
UnicodeEncodeError: 'latin-1' codec can't encode character '\u2026' in position 56: ordinal not in range(256)
Also fixed some typographical errors whilst I was at it.
When trying to run ./LAUNCH.sh -t from a disposable VM, I came across this error which appeared to be related to character encoding. This pull request adds an encoding filter to alleviate issues where the locale for the installation is not compatible with whatever the output is.
Splash List: Traceback (most recent call last): File "./splash_manager.py", line 823, in
tests()
File "./splash_manager.py", line 794, in tests
print(get_all_running_splash_docker(r_text=True))
UnicodeEncodeError: 'latin-1' codec can't encode character '\u2026' in position 56: ordinal not in range(256)
Also fixed some typographical errors whilst I was at it.