-
-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnicodeDecodeError: 'utf-8' codec can't decode byte xxx #483
Comments
Hi @hamsterbacke, could you try using terminal mode? requires_terminal : true |
Will try it. |
yup, I'll keep the ticket open, to fix non-terminal mode |
You are absolutely correct. I ticked the "Enable pseudo-terminal" box and now it accepts the non-utf8 latin9 aka iso-8859-15 characters. Sorry that I missed it the first time when you fixed it in #376 . Many thanks! |
Cool, thanks for confirming |
…om exception to replacing unknown characters
Hi there :)
again a utf-8 against iso-8859-15 issue.
Scriptserver has bash env utf-8
connects to host test.de with user oracle which has bash env de_DE.iso885915 set.
Script outputs an umlaut and Scriptserver shows error:
The server.log says:
0xe4 is a german "ä" which is an output from a program that is being executed.
The only fix is to use a pipe and converting to utf-8 like so:
echo "This is a german umlaut ä" | iconv -f latin9 -t utf8
The text was updated successfully, but these errors were encountered: