Python AttributeError: 'str' object has no attribute 'decode' in fskdemodgui.py · Issue #8 · projecthorus/wenet · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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: