We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On line 174 of fskdemodgui.py is the following:
in_line = sys.stdin.readline().decode('ascii')
This line causes an exception, "AttributeError: 'str' object has no attribute 'decode'"
Changing this to in_line = sys.stdin.readline() works, but I am not sure what the ramifications are elsewhere in the code.
in_line = sys.stdin.readline()
The text was updated successfully, but these errors were encountered:
Ahh fskdemodgui is something I haven't use in quite a while, i've moved on to the web-interface version of Wenet. (Refer the Docker install guide)
It's possible there's some non python-3 compatible code in there that I need to look at.
Sorry, something went wrong.
No branches or pull requests
On line 174 of fskdemodgui.py is the following:
in_line = sys.stdin.readline().decode('ascii')
This line causes an exception, "AttributeError: 'str' object has no attribute 'decode'"
Changing this to
in_line = sys.stdin.readline()
works, but I am not sure what the ramifications are elsewhere in the code.The text was updated successfully, but these errors were encountered: